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
31
pkgs/games/lugaru/default.nix
Normal file
31
pkgs/games/lugaru/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchFromGitLab, cmake, openal, pkg-config, libogg,
|
||||
libvorbis, SDL2, makeWrapper, libpng, libjpeg_turbo, libGLU }:
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "lugaru";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "osslugaru";
|
||||
repo = "lugaru";
|
||||
rev = version;
|
||||
sha256 = "089rblf8xw3c6dq96vnfla6zl8gxcpcbc1bj5jysfpq63hhdpypz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper cmake pkg-config ];
|
||||
|
||||
buildInputs = [ libGLU openal SDL2 libogg libvorbis libpng libjpeg_turbo ];
|
||||
|
||||
cmakeFlags = [ "-DSYSTEM_INSTALL=ON" ];
|
||||
|
||||
meta = {
|
||||
description = "Third person ninja rabbit fighting game";
|
||||
homepage = "https://osslugaru.gitlab.io";
|
||||
maintainers = [ ];
|
||||
platforms = platforms.linux;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue