tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
czmqpp: enable on darwin
Daiderd Jordan
9 years ago
ade7cc16
93cabca3
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
czmqpp
default.nix
+8
-8
pkgs/development/libraries/czmqpp/default.nix
···
11
11
sha256 = "0z8lwq53yk4h7pgibicx3q9idz15qb95r0pjpz0j5vql6qh46rja";
12
12
};
13
13
14
14
-
meta = with stdenv.lib; {
15
15
-
inherit (src.meta) homepage;
16
16
-
description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent";
17
17
-
license = licenses.lgpl3;
18
18
-
platforms = platforms.linux;
19
19
-
maintainers = with maintainers; [ chris-martin ];
20
20
-
};
21
21
-
22
14
nativeBuildInputs = [ autoreconfHook pkgconfig ];
23
15
24
16
propagatedBuildInputs = [ czmq ];
25
17
26
18
# https://github.com/zeromq/czmqpp/issues/42
27
19
patches = [ ./socket.patch ];
20
20
+
21
21
+
meta = with stdenv.lib; {
22
22
+
inherit (src.meta) homepage;
23
23
+
description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent";
24
24
+
license = licenses.lgpl3;
25
25
+
platforms = platforms.linux ++ platforms.darwin;
26
26
+
maintainers = with maintainers; [ chris-martin ];
27
27
+
};
28
28
}