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
sha256 = "0z8lwq53yk4h7pgibicx3q9idz15qb95r0pjpz0j5vql6qh46rja";
12
};
13
14
-
meta = with stdenv.lib; {
15
-
inherit (src.meta) homepage;
16
-
description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent";
17
-
license = licenses.lgpl3;
18
-
platforms = platforms.linux;
19
-
maintainers = with maintainers; [ chris-martin ];
20
-
};
21
-
22
nativeBuildInputs = [ autoreconfHook pkgconfig ];
23
24
propagatedBuildInputs = [ czmq ];
25
26
# https://github.com/zeromq/czmqpp/issues/42
27
patches = [ ./socket.patch ];
0
0
0
0
0
0
0
0
28
}
···
11
sha256 = "0z8lwq53yk4h7pgibicx3q9idz15qb95r0pjpz0j5vql6qh46rja";
12
};
13
0
0
0
0
0
0
0
0
14
nativeBuildInputs = [ autoreconfHook pkgconfig ];
15
16
propagatedBuildInputs = [ czmq ];
17
18
# https://github.com/zeromq/czmqpp/issues/42
19
patches = [ ./socket.patch ];
20
+
21
+
meta = with stdenv.lib; {
22
+
inherit (src.meta) homepage;
23
+
description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent";
24
+
license = licenses.lgpl3;
25
+
platforms = platforms.linux ++ platforms.darwin;
26
+
maintainers = with maintainers; [ chris-martin ];
27
+
};
28
}