mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 00:25:24 +00:00
27 lines
554 B
Nix
27 lines
554 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|