mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
octave.pkgs.communications: init at 1.2.2
This commit is contained in:
parent
cd3928a7aa
commit
27f86a13de
31
pkgs/development/octave-modules/communications/default.nix
Normal file
31
pkgs/development/octave-modules/communications/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user