iscc: 6.2.2 -> 6.4.1 (#390108)

This commit is contained in:
Luna Nova 2026-03-07 19:12:15 +00:00 committed by GitHub
commit 3f286702a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,5 @@
{
stdenv,
stdenvNoCC,
fetchurl,
innoextract,
runtimeShell,
@ -8,15 +8,15 @@
}:
let
version = "6.2.2";
version = "6.4.1";
majorVersion = builtins.substring 0 1 version;
in
stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "iscc";
inherit version;
src = fetchurl {
url = "https://files.jrsoftware.org/is/${majorVersion}/innosetup-${version}.exe";
hash = "sha256-gRfRDQCirTOhOQl46jhyhhwzDgh5FEEKY3eyLExbhWM=";
hash = "sha256-9Bdg4fGuFdIIm7arFi4hcguSrnUG7XBmezkgAGPWjjQ=";
};
nativeBuildInputs = [
innoextract
@ -63,6 +63,7 @@ stdenv.mkDerivation rec {
changelog = "https://jrsoftware.org/files/is6-whatsnew.htm";
license = lib.licenses.unfreeRedistributable;
maintainers = [ ];
mainProgram = "iscc";
platforms = wineWow64Packages.stable.meta.platforms;
};
}