transmission: add enableDaemon flag

This commit is contained in:
Matthew Bauer 2017-01-05 17:27:16 -06:00
parent 30eed55410
commit 976aed886b
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 , openssl, curl, libevent, inotify-tools, systemd, zlib
, enableGTK3 ? false, gtk3 , enableGTK3 ? false, gtk3
, enableSystemd ? stdenv.isLinux , enableSystemd ? stdenv.isLinux
, enableDaemon ? true
, enableCli ? true , enableCli ? true
}: }:
@ -31,6 +32,7 @@ stdenv.mkDerivation rec {
configureFlags = [ configureFlags = [
("--enable-cli=" + (if enableCli then "yes" else "no")) ("--enable-cli=" + (if enableCli then "yes" else "no"))
("--enable-daemon=" + (if enableDaemon then "yes" else "no"))
] ]
++ optional enableSystemd "--with-systemd-daemon" ++ optional enableSystemd "--with-systemd-daemon"
++ optional enableGTK3 "--with-gtk"; ++ optional enableGTK3 "--with-gtk";