octave.pkgs.zeromq: init at 1.5.2
This commit is contained in:
parent
04129d3407
commit
64bacd1be6
2 changed files with 30 additions and 0 deletions
26
pkgs/development/octave-modules/zeromq/default.nix
Normal file
26
pkgs/development/octave-modules/zeromq/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
|
@ -217,4 +217,8 @@ makeScope newScope (self:
|
|||
|
||||
windows = callPackage ../development/octave-modules/windows { };
|
||||
|
||||
zeromq = callPackage ../development/octave-modules/zeromq {
|
||||
inherit (pkgs) zeromq;
|
||||
};
|
||||
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue