1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 00:25:24 +00:00
nixpkgs/pkgs/development/octave-modules/zeromq/default.nix

27 lines
554 B
Nix
Raw Normal View History

2021-01-06 18:19:42 +00:00
{ buildOctavePackage
, lib
, fetchurl
, zeromq
}:
buildOctavePackage rec {
pname = "zeromq";
version = "1.5.2";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "18h1039ri7dr37jv20cvj5vhw7b57frrda0hhbvlgixinbqmn9j7";
};
propagatedBuildInputs = [
zeromq
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/zeromq/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "ZeroMQ bindings for GNU Octave";
};
}