tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
stabber: fix darwin build
Stanisław Pitucha
2 years ago
3ecd7073
79ac6c8f
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
misc
stabber
default.nix
+3
-2
pkgs/misc/stabber/default.nix
···
1
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat
2
-
, libmicrohttpd
3
}:
4
5
with lib;
···
20
'';
21
22
nativeBuildInputs = [ pkg-config autoreconfHook ];
23
-
buildInputs = [ glib expat libmicrohttpd ];
0
24
25
meta = {
26
description = "Stubbed XMPP Server";
···
1
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat
2
+
, libmicrohttpd, darwin
3
}:
4
5
with lib;
···
20
'';
21
22
nativeBuildInputs = [ pkg-config autoreconfHook ];
23
+
buildInputs = [ glib expat libmicrohttpd ] ++
24
+
lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
25
26
meta = {
27
description = "Stubbed XMPP Server";