nixpkgs/pkgs/misc/emulators/caprice32/default.nix

33 lines
814 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libpng, pkgconfig, SDL, freetype, zlib }:
stdenv.mkDerivation rec {
pname = "caprice32";
2020-03-14 15:33:54 +00:00
version = "4.6.0";
src = fetchFromGitHub {
repo = "caprice32";
rev = "v${version}";
owner = "ColinPitrat";
2020-03-14 15:33:54 +00:00
sha256 = "0hng5krwgc1h9bz1xlkp2hwnvas965nd7sb3z9mb2m6x9ghxlacz";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpng SDL freetype zlib ];
2020-03-14 15:33:54 +00:00
makeFlags = [
"APP_PATH=${placeholder "out"}/share/caprice32"
"RELEASE=1"
"DESTDIR=${placeholder "out"}"
"prefix=/"
];
meta = with stdenv.lib; {
description = "A complete emulation of CPC464, CPC664 and CPC6128";
2020-03-14 15:33:54 +00:00
homepage = "https://github.com/ColinPitrat/caprice32";
license = licenses.gpl2;
maintainers = [ maintainers.genesis ];
platforms = platforms.linux;
2020-03-14 15:33:54 +00:00
};
}