caprice32: 4.5.0 -> 4.6.0

This commit is contained in:
Bignaux Ronan 2020-03-14 16:33:54 +01:00 committed by Alyssa Ross
parent ea8efb20a7
commit be768d1ef3
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -3,27 +3,30 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "caprice32"; pname = "caprice32";
version = "4.5.0"; version = "4.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "caprice32"; repo = "caprice32";
rev = "v${version}"; rev = "v${version}";
owner = "ColinPitrat"; owner = "ColinPitrat";
sha256 = "056vrf5yq1574g93ix8hnjqqbdqza3qcjv0f8rvpsslqcbizma9y"; sha256 = "0hng5krwgc1h9bz1xlkp2hwnvas965nd7sb3z9mb2m6x9ghxlacz";
}; };
postPatch = "substituteInPlace cap32.cfg --replace /usr/local $out";
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpng SDL freetype zlib ]; buildInputs = [ libpng SDL freetype zlib ];
#fix GIT_HASH avoid depend on git makeFlags = [
makeFlags = [ "GIT_HASH=${src.rev}" "DESTDIR=$(out)" "prefix=/"]; "APP_PATH=${placeholder "out"}/share/caprice32"
"RELEASE=1"
"DESTDIR=${placeholder "out"}"
"prefix=/"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A complete emulation of CPC464, CPC664 and CPC6128"; description = "A complete emulation of CPC464, CPC664 and CPC6128";
homepage = https://github.com/ColinPitrat/caprice32 ; homepage = "https://github.com/ColinPitrat/caprice32";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ maintainers.genesis ]; maintainers = [ maintainers.genesis ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }