mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
8d65e832f0
Emulators form a class by themselves. So, they should be moved to applications/.
27 lines
670 B
Nix
27 lines
670 B
Nix
{ 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;
|
|
};
|
|
}
|