mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
27 lines
603 B
Nix
27 lines
603 B
Nix
{ buildOctavePackage
|
|
, lib
|
|
, fetchurl
|
|
, control
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "signal";
|
|
version = "1.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-VVreL/gPcRiQk5XDNAXwoXpPvNIrxtL7nD9/Rf72SOc=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|