octavePackages.windows: 1.6.5 -> 1.7.0 (Broken)

The Windows package build fine.
However it cannot be build into an Octave env.
This commit is contained in:
Rasmus Enevoldsen
2026-03-04 13:43:01 +01:00
parent 1439e24031
commit ef52b02565
@@ -1,22 +1,28 @@
{
buildOctavePackage,
lib,
fetchurl,
fetchFromGitHub,
nix-update-script,
}:
buildOctavePackage rec {
pname = "windows";
version = "1.6.5";
version = "1.7.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-j/goQc57jcfxlCsbf31Mx8oNud1vNE0D/hNfXyvVmTc=";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "octave-windows";
tag = "release-${version}";
sha256 = "sha256-hr94VALlAEwpqNU7imEN63M0BdPFSu5IznhWOn/mNiQ=";
};
passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=release-(.*)" ]; };
meta = {
homepage = "https://gnu-octave.github.io/packages/windows/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ KarlJoad ];
description = "Provides COM interface and additional functionality on Windows";
broken = true;
};
}