Files
nixpkgs/pkgs/development/octave-modules/general/default.nix
2026-04-04 00:19:15 -05:00

33 lines
601 B
Nix

{
buildOctavePackage,
lib,
fetchurl,
pkg-config,
nettle,
}:
buildOctavePackage rec {
pname = "general";
version = "2.1.4";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-sTd31PWTLmiR8qrBPaF/IrjJuLT/jtAXllnr0ZEkFI8=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
nettle
];
meta = {
homepage = "https://gnu-octave.github.io/packages/general/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ravenjoad ];
description = "General tools for Octave";
};
}