lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 29 lines 837 B view raw
1{ stdenv, fetchurl, fetchpatch, zeromq }: 2 3stdenv.mkDerivation rec { 4 version = "4.0.2"; 5 name = "czmq-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/zeromq/czmq/releases/download/v${version}/${name}.tar.gz"; 9 sha256 = "12gbh57xnz2v82x1g80gv4bwapmyzl00lbin5ix3swyac8i7m340"; 10 }; 11 12 patches = [ 13 (fetchpatch { 14 url = https://patch-diff.githubusercontent.com/raw/zeromq/czmq/pull/1618.patch; 15 sha256 = "1dssy7k0fni6djail8rz0lk8p777158jvrqhgn500i636gkxaxhp"; 16 }) 17 ]; 18 19 # Needs to be propagated for the .pc file to work 20 propagatedBuildInputs = [ zeromq ]; 21 22 meta = with stdenv.lib; { 23 homepage = http://czmq.zeromq.org/; 24 description = "High-level C Binding for ZeroMQ"; 25 license = licenses.mpl20; 26 platforms = platforms.all; 27 maintainers = with maintainers; [ wkennington ]; 28 }; 29}