nixpkgs/pkgs/development/libraries/czmq/4.x.nix

23 lines
635 B
Nix
Raw Normal View History

2017-11-16 23:04:00 -08:00
{ stdenv, fetchurl, fetchpatch, zeromq }:
2014-12-17 11:00:48 -08:00
stdenv.mkDerivation rec {
2018-09-19 07:15:51 -07:00
version = "4.1.1";
name = "czmq-${version}";
2014-12-17 11:00:48 -08:00
src = fetchurl {
2017-02-18 11:24:49 -08:00
url = "https://github.com/zeromq/czmq/releases/download/v${version}/${name}.tar.gz";
2018-09-19 07:15:51 -07:00
sha256 = "1h5hrcsc30fcwb032vy5gxkq4j4vv1y4dj460rfs1hhxi0cz83zh";
2014-12-17 11:00:48 -08:00
};
2015-09-17 19:21:43 -07:00
# Needs to be propagated for the .pc file to work
propagatedBuildInputs = [ zeromq ];
2014-12-17 11:00:48 -08:00
2015-03-11 18:48:58 -07:00
meta = with stdenv.lib; {
homepage = http://czmq.zeromq.org/;
2014-12-17 11:00:48 -08:00
description = "High-level C Binding for ZeroMQ";
2015-03-11 18:48:58 -07:00
license = licenses.mpl20;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2014-12-17 11:00:48 -08:00
};
}