lol

czmqpp: enable on darwin

+8 -8
+8 -8
pkgs/development/libraries/czmqpp/default.nix
··· 11 11 sha256 = "0z8lwq53yk4h7pgibicx3q9idz15qb95r0pjpz0j5vql6qh46rja"; 12 12 }; 13 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 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 + 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 28 }