We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21dfa24 commit a455c78Copy full SHA for a455c78
pkgs/by-name/co/coturn/package.nix
@@ -9,6 +9,7 @@
9
libmicrohttpd,
10
sqlite,
11
nixosTests,
12
+ systemdMinimal,
13
}:
14
15
stdenv.mkDerivation rec {
@@ -26,13 +27,17 @@ stdenv.mkDerivation rec {
26
27
pkg-config
28
];
29
- buildInputs = [
30
- openssl
31
- (libevent.override { inherit openssl; })
32
- libprom
33
- libmicrohttpd
34
- sqlite.dev
35
- ];
+ buildInputs =
+ [
+ openssl
+ (libevent.override { inherit openssl; })
+ libprom
+ libmicrohttpd
36
+ sqlite.dev
37
+ ]
38
+ ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform systemdMinimal) [
39
+ systemdMinimal
40
+ ];
41
42
patches = [
43
./pure-configure.patch
0 commit comments