summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorTerin Stock <terinjokes@gmail.com>2021-01-09 18:50:11 -0800
committerTerin Stock <terinjokes@gmail.com>2021-01-10 13:29:47 -0800
commitf34f9aa38fe3fc7482942d1df7a2d67df22dc192 (patch)
tree5181a1f39c206956f03c710e409d8be0d0ed1ca4 /pkgs/misc/emulators
parent6ae087f4b29c6d79b2c517e0143cb8053922d30f (diff)
pcem: init at 17
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/pcem/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/misc/emulators/pcem/default.nix b/pkgs/misc/emulators/pcem/default.nix
new file mode 100644
index 000000000000..6e7e3bc6379c
--- /dev/null
+++ b/pkgs/misc/emulators/pcem/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, lib, fetchzip, wxGTK31, coreutils, SDL2, openal, alsaLib, pkg-config
+, autoreconfHook, withNetworking ? true, withALSA ? true }:
+
+stdenv.mkDerivation rec {
+ pname = "pcem";
+ version = "17";
+
+ src = fetchzip {
+ url = "https://pcem-emulator.co.uk/files/PCemV${version}Linux.tar.gz";
+ stripRoot = false;
+ sha256 = "067pbnc15h6a4pnnym82klr1w8qwfm6p0pkx93gx06wvwqsxvbdv";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+ buildInputs = [ wxGTK31 coreutils SDL2 openal ]
+ ++ lib.optional withALSA alsaLib;
+
+ configureFlags = [ "--enable-release-build" ]
+ ++ lib.optional withNetworking "--enable-networking"
+ ++ lib.optional withALSA "--enable-alsa";
+
+ meta = with lib; {
+ description = "Emulator for IBM PC computers and clones";
+ homepage = "https://pcem-emulator.co.uk/";
+ license = licenses.gpl2Only;
+ maintainers = [ maintainers.terin ];
+ platforms = platforms.linux ++ platforms.windows;
+ };
+}