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/soi/default.nix
Normal file
28
pkgs/games/soi/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl, cmake
|
||||
, boost, eigen2, lua, luabind, libGLU, libGL, SDL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "soi";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/soi/Spheres%20of%20Influence-${version}-Source.tar.bz2";
|
||||
name = "${pname}-${version}.tar.bz2";
|
||||
sha256 = "03c3wnvhd42qh8mi68lybf8nv6wzlm1nx16d6pdcn2jzgx1j2lzd";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ boost lua luabind libGLU libGL SDL ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DEIGEN_INCLUDE_DIR=${eigen2}/include/eigen2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A physics-based puzzle game";
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.free;
|
||||
downloadPage = "https://sourceforge.net/projects/soi/files/";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue