summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-01-05 21:18:09 -0800
committerGitHub <noreply@github.com>2020-01-05 21:18:09 -0800
commita5c346f6a78c56601688331e6e707344d0f1468c (patch)
treefbdb1f2b1c38bc1a676ba8a5d81683ee31662724 /pkgs/games
parentdab8500b496ee66a9a05db05056b85f3186be6dc (diff)
parentb7cf07e45b176c3d9deb1c4b67a191e615abe4e3 (diff)
downloadnixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar.gz
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar.bz2
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar.lz
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar.xz
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.tar.zst
nixpkgs-a5c346f6a78c56601688331e6e707344d0f1468c.zip
Merge pull request #60518 from bignaux/gweled
gweled: init at unstable-2018-02-15
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gweled/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/games/gweled/default.nix b/pkgs/games/gweled/default.nix
new file mode 100644
index 00000000000..d5d4f5c4015
--- /dev/null
+++ b/pkgs/games/gweled/default.nix
@@ -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 ];
+  };
+}