bigpemu: 1.17 -> 1.18, fix metadata (#373863)

This commit is contained in:
Gaétan Lepage
2025-03-02 21:56:19 +01:00
committed by GitHub
+12 -12
View File
@@ -11,12 +11,12 @@
let
bigpemu-unwrapped = stdenv.mkDerivation rec {
pname = "BigPEmu";
version = "1.17";
version = "1.18";
src = fetchurl {
url = "https://www.richwhitehouse.com/jaguar/builds/BigPEmu_Linux64_v${
builtins.replaceStrings [ "." ] [ "" ] version
}.tar.gz";
hash = "sha256-R5f3LD5RcGwdwcZqXGaCSFDyHaJrQ1ghS3kqVvBd38A=";
hash = "sha256-fYzC1gYi6/6/Ouxd1reRXRGHshLwLFK4N/Md7GiiU9Y=";
};
installPhase = ''
@@ -24,16 +24,6 @@ let
tar -xvf $src -C $out/bin --strip-components=1
'';
meta = {
description = "Atari Jaguar Emulator (BigPEmu) by Richard Whitehouse";
homepage = "https://www.richwhitehouse.com/jaguar/index.php";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
tombert
hughobrien
];
platforms = with lib.platforms; [ "x86_64-linux" ];
};
};
in
buildFHSEnv {
@@ -45,6 +35,16 @@ buildFHSEnv {
libGLU
SDL2
];
meta = {
description = "Atari Jaguar Emulator (BigPEmu) by Richard Whitehouse";
homepage = "https://www.richwhitehouse.com/jaguar/index.php";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
tombert
hughobrien
];
platforms = with lib.platforms; [ "x86_64-linux" ];
};
runScript = "${bigpemu-unwrapped}/bin/bigpemu";
passthru = {
unwrapped = bigpemu-unwrapped;