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/applications/graphics/xlife/default.nix
Normal file
28
pkgs/applications/graphics/xlife/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchsvn, xorg }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "xlife";
|
||||
version = "6.7.5";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://svn.code.sf.net/p/xlife-cal/xlife/trunk";
|
||||
rev = "365";
|
||||
sha256 = "1gadlcp32s179kd7ypxr8cymd6s060p6z4c2vnx94i8bmiw3nn8h";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with xorg; [ imake gccmakedep ];
|
||||
buildInputs = [ xorg.libX11 ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
installPhase = ''
|
||||
install -Dm755 xlife -t $out/bin
|
||||
install -Dm755 lifeconv -t $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://litwr2.atspace.eu/xlife.php";
|
||||
description = "Conway's Game of Life and other cellular automata, for X";
|
||||
license = licenses.hpndSellVariant;
|
||||
maintainers = with maintainers; [ djanatyn ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue