410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
26 lines
603 B
Nix
26 lines
603 B
Nix
{ buildOctavePackage
|
|
, lib
|
|
, fetchurl
|
|
, control
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "signal";
|
|
version = "1.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-VFuXVA6+ujtCDwiQb905d/wpOzvI/Db2uosJTOqI8zk=";
|
|
};
|
|
|
|
requiredOctavePackages = [
|
|
control
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://octave.sourceforge.io/signal/index.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ KarlJoad ];
|
|
description = "Signal processing tools, including filtering, windowing and display functions";
|
|
};
|
|
}
|