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-10-13 13:31:11 +01:00
name = "cppzmq-20150926";
2014-11-07 23:57:34 +00:00
src = fetchgit {
2015-07-28 09:44:45 +01:00
url = "https://github.com/zeromq/cppzmq";
2015-10-13 13:31:11 +01:00
rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022";
sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71";
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;
};
}