uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/applications/emulators/lambda-delta/default.nix
Normal file
26
pkgs/applications/emulators/lambda-delta/default.nix
Normal file
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue