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
28
pkgs/games/garden-of-coloured-lights/default.nix
Normal file
28
pkgs/games/garden-of-coloured-lights/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl, autoconf, automake, allegro }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "garden-of-coloured-lights";
|
||||
version = "1.0.9";
|
||||
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
buildInputs = [ allegro ];
|
||||
|
||||
prePatch = ''
|
||||
noInline='s/inline //'
|
||||
sed -e "$noInline" -i src/stuff.c
|
||||
sed -e "$noInline" -i src/stuff.h
|
||||
'';
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/garden/${version}/garden-${version}.tar.gz";
|
||||
sha256 = "1qsj4d7r22m5f9f5f6cyvam1y5q5pbqvy5058r7w0k4s48n77y6s";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Old-school vertical shoot-em-up / bullet hell";
|
||||
homepage = "http://garden.sourceforge.net/drupal/";
|
||||
maintainers = with maintainers; [ Profpatsch ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue