stubby: build with libsystemd support
This was added in v0.3.0 and allows notifying service readiness.
This commit is contained in:
parent
fb52f64dad
commit
d62f76f81d
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, getdns, doxygen, libyaml, darwin, cmake }:
|
{ stdenv, fetchFromGitHub, getdns, doxygen, libyaml, darwin, cmake, systemd }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "stubby";
|
pname = "stubby";
|
||||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake libyaml ];
|
nativeBuildInputs = [ cmake libyaml ];
|
||||||
|
|
||||||
buildInputs = [ doxygen getdns ]
|
buildInputs = [ doxygen getdns systemd ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in New Issue