summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/lambda-delta
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-15 23:28:16 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:38:20 -0300
commit8d65e832f0a18f60e2040940c80d96373ac8b88c (patch)
tree3d6ade66b2a81403e3852b80b9e7c660699b6ed6 /pkgs/applications/emulators/lambda-delta
parent19574af0af3ffaf7c9e359744ed32556f34536bd (diff)
Move misc/emulators to applications/emulators - part 1
Emulators form a class by themselves. So, they should be moved to applications/.
Diffstat (limited to 'pkgs/applications/emulators/lambda-delta')
-rw-r--r--pkgs/applications/emulators/lambda-delta/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/lambda-delta/default.nix b/pkgs/applications/emulators/lambda-delta/default.nix
new file mode 100644
index 000000000000..a17a0eadfd5b
--- /dev/null
+++ b/pkgs/applications/emulators/lambda-delta/default.nix
@@ -0,0 +1,26 @@
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, SDL2 }:
+
+stdenv.mkDerivation rec {
+ pname = "lambda-delta";
+ version = "0.98.3";
+
+ src = fetchFromGitHub {
+ owner = "dseagrav";
+ repo = "ld";
+ rev = version;
+ sha256 = "02m43fj9dzc1i1jl01qwnhjiq1rh03jw1xq59sx2h3bhn7dk941x";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+ buildInputs = [ SDL2 ];
+
+ configureFlags = [ "--without-SDL1" ];
+
+ meta = with lib; {
+ description = "LMI (Lambda Lisp Machine) emulator";
+ homepage = "https://github.com/dseagrav/ld";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ siraben ];
+ platforms = platforms.unix;
+ };
+}