biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / emulators / lambda-delta / default.nix
blobcf2001caff32f23c7a51d7a8d8c83d227723e317
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, SDL2 }:
3 stdenv.mkDerivation rec {
4   pname = "lambda-delta";
5   version = "0.98.3";
7   src = fetchFromGitHub {
8     owner = "dseagrav";
9     repo = "ld";
10     rev = version;
11     sha256 = "02m43fj9dzc1i1jl01qwnhjiq1rh03jw1xq59sx2h3bhn7dk941x";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ SDL2 ];
16   env = lib.optionalAttrs stdenv.cc.isClang {
17     NIX_CFLAGS_COMPILE = "-std=c89";
18   };
21   configureFlags = [ "--without-SDL1" ];
23   meta = with lib; {
24     description = "LMI (Lambda Lisp Machine) emulator";
25     homepage = "https://github.com/dseagrav/ld";
26     license = licenses.gpl2;
27     maintainers = with maintainers; [ siraben ];
28     platforms = platforms.unix;
29   };