1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/cppzmq/default.nix

24 lines
595 B
Nix
Raw Normal View History

2014-11-07 23:57:34 +00:00
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
2015-06-04 18:22:36 +01:00
name = "cppzmq-2015-03-05";
2014-11-07 23:57:34 +00:00
src = fetchgit {
2015-03-29 03:01:53 +01:00
url = "git://github.com/zeromq/cppzmq";
rev = "ac705f604701e2ca1643fa31bae240f9da8b9b9a";
sha256 = "1bcd5553601a6cdc926aa7a7c89fe54d3b14693cfce85dea97af25cf5a144398";
2014-11-07 23:57:34 +00:00
};
installPhase = ''
install -Dm644 zmq.hpp $out/include/zmq.hpp
'';
meta = with stdenv.lib; {
homepage = https://github.com/zeromq/cppzmq;
license = licenses.bsd2;
description = "C++ binding for 0MQ";
maintainers = with maintainers; [ abbradar ];
2014-11-07 23:57:34 +00:00
platforms = platforms.unix;
};
}