nixpkgs/pkgs/development/octave-modules/zeromq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
725 B
Nix
Raw Normal View History

2021-01-06 18:19:42 +00:00
{ buildOctavePackage
, lib
, fetchurl
, zeromq
2021-10-29 05:50:55 +00:00
, pkg-config
, autoreconfHook
2021-01-06 18:19:42 +00:00
}:
buildOctavePackage rec {
pname = "zeromq";
version = "1.5.5";
2021-01-06 18:19:42 +00:00
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-MAZEpbVuragVuXrMJ8q5/jU5cTchosAtrAR6ElLwfss=";
2021-01-06 18:19:42 +00:00
};
2021-10-29 05:50:55 +00:00
preAutoreconf = ''
cd src
'';
postAutoreconf = ''
cd ..
'';
nativeBuildInputs = [
pkg-config
autoreconfHook
];
2021-01-06 18:19:42 +00:00
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";
};
}