octave.pkgs.communications: init at 1.2.2

This commit is contained in:
Karl Hallsby 2021-01-06 10:45:33 -06:00 committed by Doron Behar
parent cd3928a7aa
commit 27f86a13de
2 changed files with 32 additions and 3 deletions

View file

@ -0,0 +1,31 @@
{ buildOctavePackage
, lib
, fetchurl
, signal
, hdf5
}:
buildOctavePackage rec {
pname = "communications";
version = "1.2.2";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "1xay2vjyadv3ja8dmqqzm2his8s0rvidz23nq1c2yl3xh1gavyck";
};
buildInputs = [
hdf5
];
requiredOctavePackages = [
signal
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/communications/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = " Digital Communications, Error Correcting Codes (Channel Code), Source Code functions, Modulation and Galois Fields";
};
}

View file

@ -65,9 +65,7 @@ makeScope newScope (self:
cgi = callPackage ../development/octave-modules/cgi { };
communications = callPackage ../development/octave-modules/communications {
hdf5 = pkgs.hdf5;
};
communications = callPackage ../development/octave-modules/communications { };
control = callPackage ../development/octave-modules/control { };