fsuae: strip .dat archive for determinism
This commit is contained in:
parent
a7d38622e7
commit
99e9fdb0e4
1 changed files with 7 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue