3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #29706 from gnidorah/wayland

termite: fix fonts in wayland
This commit is contained in:
Jörg Thalheim 2017-09-24 14:48:04 +01:00 committed by GitHub
commit 272c0bf88c

View file

@ -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}";
@ -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" ];