forked from mirrors/nixpkgs
transmission: add enableCli flag
This commit is contained in:
parent
cae067f17a
commit
30eed55410
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue