gnome3.gnome_terminal: add missing runtime dependencies

This commit is contained in:
Domen Kožar 2014-02-07 00:29:39 +01:00
parent 2d166153ec
commit 1142be6301

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango
, gnome_doc_utils, intltool, libX11, which, gconf, libuuid
, desktop_file_utils, itstool, ncurses }:
, desktop_file_utils, itstool, ncurses, makeWrapper }:
stdenv.mkDerivation rec {
@ -15,10 +15,16 @@ stdenv.mkDerivation rec {
};
buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte
gnome3.dconf gnome3.gconf itstool ncurses ];
gnome3.dconf gnome3.gconf itstool ncurses makeWrapper ];
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 desktop_file_utils ];
postInstall = ''
wrapProgram "$out/libexec/gnome-terminal-server" \
--prefix XDG_DATA_DIRS : "${gnome3.gsettings_desktop_schemas}/share:$out/share"
'';
meta = with stdenv.lib; {
platforms = platforms.linux;
};