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
27
pkgs/games/xpilot/bloodspilot-server.nix
Normal file
27
pkgs/games/xpilot/bloodspilot-server.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, fetchurl, expat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bloodspilot-xpilot-fxi-server";
|
||||
version = "1.4.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/bloodspilot/server/server%20v${version}/xpilot-${version}fxi.tar.gz";
|
||||
sha256 = "0d7hnpshifq6gy9a0g6il6h1hgqqjyys36n8w84hr8d4nhg4d1ji";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
expat
|
||||
];
|
||||
|
||||
patches = [
|
||||
./server-gcc5.patch
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A multiplayer X11 space combat game (server part)";
|
||||
homepage = "http://bloodspilot.sf.net/";
|
||||
license = licenses.gpl2Plus ;
|
||||
maintainers = [ maintainers.raskin ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue