Skip to content

Commit

Permalink
termite: use wrapGAppsHook
Browse files Browse the repository at this point in the history
(cherry picked from commit 4d4c325)
  • Loading branch information
Mic92 committed Sep 24, 2017
1 parent 49be640 commit 550a7c9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/applications/misc/termite/default.nix
@@ -1,8 +1,8 @@
{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses, makeWrapper, symlinkJoin
{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses, makeWrapper, wrapGAppsHook, symlinkJoin
, configFile ? null
}:

let
let
version = "12";
termite = stdenv.mkDerivation {
name = "termite-${version}";
Expand All @@ -17,7 +17,9 @@ let

makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];

buildInputs = [ pkgconfig vte gtk3 ncurses ];
buildInputs = [ vte gtk3 ncurses ];

nativeBuildInputs = [ wrapGAppsHook pkgconfig ];

outputs = [ "out" "terminfo" ];

Expand Down

0 comments on commit 550a7c9

Please sign in to comment.