Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
611 B
Nix
28 lines
611 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
zeromq,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.2.1";
|
|
pname = "czmq";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/zeromq/czmq/releases/download/v${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-XXIKIEwqWGRdb3ZDrxXVY6cS2tmMnTLB7ZEzd9qmrDk=";
|
|
};
|
|
|
|
# Needs to be propagated for the .pc file to work
|
|
propagatedBuildInputs = [ zeromq ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://czmq.zeromq.org/";
|
|
description = "High-level C Binding for ZeroMQ";
|
|
mainProgram = "zmakecert";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|