Merge pull request #60518 from bignaux/gweled

gweled: init at unstable-2018-02-15
This commit is contained in:
Ryan Mulligan 2020-01-05 21:18:09 -08:00 committed by GitHub
commit a5c346f6a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchbzr, intltool
, gtk2, wrapGAppsHook, autoreconfHook, pkgconfig
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:
stdenv.mkDerivation rec {
pname = "gweled";
version = "unstable-2018-02-15";
src = fetchbzr {
url = "lp:gweled";
rev = "94";
sha256 = "01c38y4df5a06wqbsmsn8ysxx7hav9yvw6zdwbc9m5m55z7vmdb8";
};
doCheck = false;
nativeBuildInputs = [ wrapGAppsHook intltool autoreconfHook pkgconfig ];
buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
configureFlags = [ "--disable-setgid" ];
meta = with stdenv.lib; {
description = "Bejeweled clone game";
homepage = "https://gweled.org";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.genesis ];
};
}

View File

@ -22905,6 +22905,8 @@ in
gtypist = callPackage ../games/gtypist { };
gweled = callPackage ../games/gweled {};
gzdoom = callPackage ../games/gzdoom { };
harmonist = callPackage ../games/harmonist { };