xcpc: init at 20070122

This commit is contained in:
Bignaux Ronan 2018-02-27 19:02:44 +01:00 committed by Jan Tojnar
parent 2b7e912c57
commit dbb22dd1d6
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, libdsk, pkgconfig, glib, libXaw, libX11, libXext, lesstif }:
stdenv.mkDerivation rec {
version = "20070122";
name = "xcpc-${version}";
src = fetchurl {
url = "mirror://sourceforge/xcpc/${name}.tar.gz";
sha256 = "0hxsbhmyzyyrlidgg0q8izw55q0z40xrynw5a1c3frdnihj9jf7n";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libdsk libXaw libX11 libXext lesstif ];
meta = with stdenv.lib; {
description = "A portable Amstrad CPC 464/664/6128 emulator written in C";
homepage = https://www.xcpc-emulator.net;
license = licenses.gpl2Plus;
maintainers = [ maintainers.genesis ];
platforms = platforms.linux;
};
}

View file

@ -20692,6 +20692,8 @@ with pkgs;
zsnes = callPackage_i686 ../misc/emulators/zsnes { };
xcpc = callPackage ../misc/emulators/xcpc { };
zxcvbn-c = callPackage ../development/libraries/zxcvbn-c { };
snes9x-gtk = callPackage ../misc/emulators/snes9x-gtk { };