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
34
pkgs/games/gweled/default.nix
Normal file
34
pkgs/games/gweled/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ lib, stdenv, fetchbzr, gettext
|
||||
, gtk2, wrapGAppsHook, autoreconfHook, pkg-config
|
||||
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gweled";
|
||||
version = "unstable-2021-02-11";
|
||||
|
||||
src = fetchbzr {
|
||||
url = "lp:gweled";
|
||||
rev = "108";
|
||||
sha256 = "sha256-rM4dgbYfSrVqZwi+xzKuEtmtjK3HVvqeutmni1vleLo=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace configure.ac --replace "AM_GNU_GETTEXT_VERSION([0.19.8])" "AM_GNU_GETTEXT_VERSION([${gettext.version}])"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ wrapGAppsHook gettext autoreconfHook pkg-config ];
|
||||
|
||||
buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
|
||||
|
||||
configureFlags = [ "--disable-setgid" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bejeweled clone game";
|
||||
homepage = "https://gweled.org";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue