From ade7cc16eb285a02bb256e0d7eae570658c9bb8a Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Tue, 3 Jan 2017 01:37:16 +0100 Subject: [PATCH] czmqpp: enable on darwin --- pkgs/development/libraries/czmqpp/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/czmqpp/default.nix b/pkgs/development/libraries/czmqpp/default.nix index 672a89cc3c02..0c026b9f47a5 100644 --- a/pkgs/development/libraries/czmqpp/default.nix +++ b/pkgs/development/libraries/czmqpp/default.nix @@ -11,18 +11,18 @@ stdenv.mkDerivation rec { sha256 = "0z8lwq53yk4h7pgibicx3q9idz15qb95r0pjpz0j5vql6qh46rja"; }; - meta = with stdenv.lib; { - inherit (src.meta) homepage; - description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ chris-martin ]; - }; - nativeBuildInputs = [ autoreconfHook pkgconfig ]; propagatedBuildInputs = [ czmq ]; # https://github.com/zeromq/czmqpp/issues/42 patches = [ ./socket.patch ]; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "C++ wrapper for czmq. Aims to be minimal, simple and consistent"; + license = licenses.lgpl3; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ chris-martin ]; + }; }