at v192 597 B view raw
1{ stdenv, fetchgit }: 2 3stdenv.mkDerivation rec { 4 name = "cppzmq-2015-07-06"; 5 6 src = fetchgit { 7 url = "https://github.com/zeromq/cppzmq"; 8 rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b"; 9 sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa"; 10 }; 11 12 installPhase = '' 13 install -Dm644 zmq.hpp $out/include/zmq.hpp 14 ''; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/zeromq/cppzmq; 18 license = licenses.bsd2; 19 description = "C++ binding for 0MQ"; 20 maintainers = with maintainers; [ abbradar ]; 21 platforms = platforms.unix; 22 }; 23}