transmission: add enableCli flag

wip/yesman
Matthew Bauer 8 years ago
parent cae067f17a
commit 30eed55410
No known key found for this signature in database
GPG Key ID: E04D0AD9469141C3
  1. 3
      pkgs/applications/networking/p2p/transmission/default.nix

@ -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…
Cancel
Save