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/njam/default.nix
Normal file
28
pkgs/games/njam/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{lib, stdenv, fetchurl, SDL, SDL_image, SDL_mixer, SDL_net }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "njam";
|
||||
version = "1.25";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/njam/njam-${version}-src.tar.gz";
|
||||
sha256 = "0ysvqw017xkvddj957pdfmbmji7qi20nyr7f0zxvcvm6c7d3cc7s";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
rm src/*.o
|
||||
'';
|
||||
|
||||
buildInputs = [ SDL SDL_image SDL_mixer SDL_net ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
patches = [ ./logfile.patch ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://trackballs.sourceforge.net/";
|
||||
description = "Cross-platform pacman-like game";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue