transmission: add enableDaemon flag

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

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

Loading…
Cancel
Save