mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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:
commit
eb2992a4c7
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user