Unverified Commit 3f286702 authored by Luna Nova's avatar Luna Nova Committed by GitHub
Browse files

iscc: 6.2.2 -> 6.4.1 (#390108)

parents 64807957 8ad15bf8
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
{
  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;
  };
}