lol

Merge pull request #222290 from viraptor/stabber-darwin

stabber: fix darwin build

authored by

Stanisław Pitucha and committed by
GitHub
060cf0dc e4e91c61

+3 -2
+3 -2
pkgs/misc/stabber/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat 2 - , libmicrohttpd 2 + , libmicrohttpd, darwin 3 3 }: 4 4 5 5 with lib; ··· 20 20 ''; 21 21 22 22 nativeBuildInputs = [ pkg-config autoreconfHook ]; 23 - buildInputs = [ glib expat libmicrohttpd ]; 23 + buildInputs = [ glib expat libmicrohttpd ] ++ 24 + lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; 24 25 25 26 meta = { 26 27 description = "Stubbed XMPP Server";