b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
27 lines
664 B
Nix
27 lines
664 B
Nix
{ stdenv, fetchurl, zeromq }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0.2";
|
|
name = "czmq-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.zeromq.org/${name}.tar.gz";
|
|
sha256 = "16k9awrhdsymx7dnmvqcnkaq8lz8x8zppy6sh7ls8prpd6mkkjlb";
|
|
};
|
|
|
|
patches = [ ./czmq3-gcc7.patch ];
|
|
|
|
# Fix build on Glibc 2.24.
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
|
|
|
|
# Needs to be propagated for the .pc file to work
|
|
propagatedBuildInputs = [ zeromq ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://czmq.zeromq.org/;
|
|
description = "High-level C Binding for ZeroMQ";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|