Skip to content

Commit

Permalink
octave.pkgs.zeromq: init at 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlJoad authored and doronbehar committed Feb 24, 2021
1 parent 04129d3 commit 64bacd1
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/octave-modules/zeromq/default.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/octave-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -217,4 +217,8 @@ makeScope newScope (self:

windows = callPackage ../development/octave-modules/windows { };

zeromq = callPackage ../development/octave-modules/zeromq {
inherit (pkgs) zeromq;
};

})

0 comments on commit 64bacd1

Please sign in to comment.