Merge pull request #2014 from offlinehacker/pkgs/transmission-remote-gtk/fix_filechooser_schema

transmission-remote-gtk: fix missing schema for gtk3 FileChooser
This commit is contained in:
Domen Kožar 2014-03-23 18:06:52 +01:00
commit eb2992a4c7

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, json_glib, curl }:
{ stdenv, makeWrapper, fetchurl, pkgconfig, intltool, gtk3, json_glib, curl }:
stdenv.mkDerivation rec {
@ -9,7 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "1jbh2pm4i740cmzqd2r7zxnqqipvv2v2ndmnmk53nqrxcbgc4nlz";
};
buildInputs = [ pkgconfig intltool gtk3 json_glib curl ];
buildInputs = [ makeWrapper pkgconfig intltool gtk3 json_glib curl ];
postInstall = ''
wrapProgram "$out/bin/transmission-remote-gtk" \
--prefix XDG_DATA_DIRS : "${gtk3}/share"
'';
meta = {
description = "GTK remote control for the Transmission BitTorrent client";