3
0
Fork 0
forked from mirrors/nixpkgs

transmission: add enableCli flag

This commit is contained in:
Matthew Bauer 2017-01-05 17:26:51 -06:00
parent cae067f17a
commit 30eed55410
No known key found for this signature in database
GPG key ID: E04D0AD9469141C3

View file

@ -2,6 +2,7 @@
, openssl, curl, libevent, inotify-tools, systemd, zlib
, enableGTK3 ? false, gtk3
, enableSystemd ? stdenv.isLinux
, enableCli ? true
}:
let
@ -29,7 +30,7 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
"--enable-cli"
("--enable-cli=" + (if enableCli then "yes" else "no"))
]
++ optional enableSystemd "--with-systemd-daemon"
++ optional enableGTK3 "--with-gtk";