summary refs log tree commit diff
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2020-03-15 06:16:33 +0100
committerEmery Hemingway <ehmry@posteo.net>2020-03-16 10:10:45 +0530
commitd62f76f81dae6ee870991f7a55ce6139bf7c67c6 (patch)
treec822236a5be9ffc4ed9c7825bb5da13b171ea417
parentfb52f64dad83675ab35d88908a5703dfdc6266f2 (diff)
downloadnixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar.gz
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar.bz2
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar.lz
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar.xz
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.tar.zst
nixpkgs-d62f76f81dae6ee870991f7a55ce6139bf7c67c6.zip
stubby: build with libsystemd support
This was added in v0.3.0 and allows notifying service readiness.
-rw-r--r--pkgs/tools/networking/stubby/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/stubby/default.nix b/pkgs/tools/networking/stubby/default.nix
index b560f2768ad..2a10eb13e32 100644
--- a/pkgs/tools/networking/stubby/default.nix
+++ b/pkgs/tools/networking/stubby/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, getdns, doxygen, libyaml, darwin, cmake }:
+{ stdenv, fetchFromGitHub, getdns, doxygen, libyaml, darwin, cmake, systemd }:
 
 stdenv.mkDerivation rec {
   pname = "stubby";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake libyaml ];
 
-  buildInputs = [ doxygen getdns ]
+  buildInputs = [ doxygen getdns systemd ]
     ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ];
 
   meta = with stdenv.lib; {