depot/third_party/nixpkgs/pkgs/applications/emulators/xcpc/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

29 lines
812 B
Nix

{ lib, stdenv, fetchurl, pkg-config, glib, libXaw, libX11, libXext
, libDSKSupport ? true, libdsk
, motifSupport ? false, lesstif
}:
stdenv.mkDerivation rec {
version = "20070122";
pname = "xcpc";
src = fetchurl {
url = "mirror://sourceforge/xcpc/${pname}-${version}.tar.gz";
sha256 = "0hxsbhmyzyyrlidgg0q8izw55q0z40xrynw5a1c3frdnihj9jf7n";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib libdsk libXaw libX11 libXext ]
++ lib.optional libDSKSupport libdsk
++ lib.optional motifSupport lesstif;
meta = with lib; {
description = "Portable Amstrad CPC 464/664/6128 emulator written in C";
homepage = "https://www.xcpc-emulator.net";
license = licenses.gpl2Plus;
maintainers = [ ];
platforms = platforms.linux;
mainProgram = "xcpc";
};
}