octavePackages.miscellaneous: 1.3.1 -> 1.3.2

This commit is contained in:
Rasmus Enevoldsen
2026-03-04 14:29:42 +01:00
parent 4e31a83f61
commit 54e405e548
@@ -1,7 +1,8 @@
{
buildOctavePackage,
lib,
fetchurl,
fetchFromGitHub,
nix-update-script,
# Build-time dependencies
ncurses, # >= 5
units,
@@ -9,11 +10,13 @@
buildOctavePackage rec {
pname = "miscellaneous";
version = "1.3.1";
version = "1.3.2";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-VxIReiXTHRJmADZGpA6B59dCdDPCY2bkJt/6mrir1kg=";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "octave-miscellaneous";
tag = "release-${version}";
sha256 = "sha256-IF5kBd7RD2+gooRTNtv2XDPJcpIZlsu8QXlO3f3nD/Q=";
};
buildInputs = [
@@ -24,6 +27,13 @@ buildOctavePackage rec {
units
];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"release-(.*)"
];
};
meta = {
homepage = "https://gnu-octave.github.io/packages/miscellaneous/";
license = lib.licenses.gpl3Plus;