Merge pull request #296978 from TomaSajt/fsuae

fsuae: strip .dat archive for determinism
This commit is contained in:
Nick Cao 2024-03-19 08:55:45 -04:00 committed by GitHub
commit 24d658877b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,7 @@
, lua
, openal
, pkg-config
, strip-nondeterminism
, stdenv
, zip
, zlib
@ -31,6 +32,7 @@ stdenv.mkDerivation (finalAttrs:{
nativeBuildInputs = [
autoreconfHook
pkg-config
strip-nondeterminism
zip
];
@ -50,6 +52,11 @@ stdenv.mkDerivation (finalAttrs:{
strictDeps = true;
# Make sure that the build timestamp is not included in the archive
postFixup = ''
strip-nondeterminism --type zip $out/share/fs-uae/fs-uae.dat
'';
meta = {
homepage = "https://fs-uae.net";
description = "An accurate, customizable Amiga Emulator";