summary refs log tree commit diff
path: root/pkgs/development/libraries/nanomsg
diff options
context:
space:
mode:
authorJason Ziglar <jpz@vt.edu>2016-02-02 22:43:26 -0500
committerJason Ziglar <jpz@vt.edu>2016-02-02 22:43:26 -0500
commit00a94745948159700516e559cc0cf5e6c69429a3 (patch)
tree1b9b6efd1fb2ce456f93f9dbef84f0b806b04866 /pkgs/development/libraries/nanomsg
parent22d9e4ef26eda11799720e8f3142ca011a8d79d2 (diff)
downloadnixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar.gz
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar.bz2
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar.lz
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar.xz
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.tar.zst
nixpkgs-00a94745948159700516e559cc0cf5e6c69429a3.zip
Modifying nanomsg to build under unix, to support Mac OS X.
Diffstat (limited to 'pkgs/development/libraries/nanomsg')
-rw-r--r--pkgs/development/libraries/nanomsg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/nanomsg/default.nix b/pkgs/development/libraries/nanomsg/default.nix
index 4d9e49a54d9..89fdd334f95 100644
--- a/pkgs/development/libraries/nanomsg/default.nix
+++ b/pkgs/development/libraries/nanomsg/default.nix
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
     description= "Socket library that provides several common communication patterns";
     homepage = http://nanomsg.org/;
     license = licenses.mit;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }