transmission: Fix build

http://hydra.nixos.org/build/22182663
This commit is contained in:
Eelco Dolstra 2015-05-13 16:05:34 +02:00
parent 388dac478d
commit bfedb4940c

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, file, makeWrapper
, openssl, curl, libevent, inotifyTools, systemd
, openssl, curl, libevent, inotifyTools, systemd, zlib
, enableGTK3 ? false, gtk3
}:
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
sha256 = "1sxr1magqb5s26yvr5yhs1f7bmir8gl09niafg64lhgfnhv1kz59";
};
buildInputs = [ pkgconfig intltool file openssl curl libevent inotifyTools ]
buildInputs = [ pkgconfig intltool file openssl curl libevent inotifyTools zlib ]
++ optionals enableGTK3 [ gtk3 makeWrapper ]
++ optional stdenv.isLinux systemd;