wiimms-iso-tools: 3.02a -> 3.05a (#213188)

* wiimms-iso-tools: 3.02a -> 3.05a

https://wit.wiimm.de/changelog.html#r8245
https://wit.wiimm.de/changelog.html#r8427
https://wit.wiimm.de/changelog.html#r8638

This also adds Clang (and, by extension, macOS) support.

* Update pkgs/tools/filesystems/wiimms-iso-tools/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

---------

Co-authored-by: Nick Cao <nickcao@nichi.co>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Winter 2023-02-02 20:01:25 -05:00 committed by GitHub
parent 5e04ad9e66
commit 6f5a35be63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
{lib, stdenv, fetchurl, fetchpatch, zlib, ncurses, fuse}:
{ lib, stdenv, fetchurl, fetchpatch, zlib, ncurses, fuse }:
stdenv.mkDerivation rec {
pname = "wiimms-iso-tools";
version = "3.02a";
version = "3.05a";
src = fetchurl {
url = "https://download.wiimm.de/source/wiimms-iso-tools/wiimms-iso-tools.source-${version}.tar.bz2";
sha256 = "074cvcaqz23xyihslc6n64wwxwcnl6xp7l0750yb9pc0wrqxmj69";
url = "https://download.wiimm.de/source/wiimms-iso-tools/wiimms-iso-tools.source-${version}.txz";
hash = "sha256-5aikiPJkZf9OwD8QmQ7ijhBOtFQpkIErvb6gOvEu2L0=";
};
buildInputs = [ zlib ncurses fuse ];
@ -25,13 +25,11 @@ stdenv.mkDerivation rec {
];
postPatch = ''
patchShebangs setup.sh
patchShebangs gen-template.sh
patchShebangs gen-text-file.sh
patchShebangs setup.sh gen-template.sh gen-text-file.sh
substituteInPlace setup.sh --replace gcc "$CC"
substituteInPlace Makefile --replace gcc "$CC"
'';
# Workaround build failure on -fno-common toolchains like upstream gcc-10.
NIX_CFLAGS_COMPILE = "-Wno-error=format-security -fcommon";
INSTALL_PATH = "$out";
installPhase = ''
@ -44,7 +42,7 @@ stdenv.mkDerivation rec {
homepage = "https://wit.wiimm.de";
description = "A set of command line tools to manipulate Wii and GameCube ISO images and WBFS containers";
license = licenses.gpl2;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ nilp0inter ];
};
}