xcpc: init at 20070122
This commit is contained in:
parent
2b7e912c57
commit
dbb22dd1d6
22
pkgs/misc/emulators/xcpc/default.nix
Normal file
22
pkgs/misc/emulators/xcpc/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user