aboutsummaryrefslogtreecommitdiff
path: root/pkgs/desktops/gnome-3/games/lightsoff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-28 12:32:57 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-28 12:32:57 -0400
commitf037625f87b0b1d8852a1f31ebaece5fdbc87a2b (patch)
treeaf8c8369954890db69195a1e9394ce16c7640d7f /pkgs/desktops/gnome-3/games/lightsoff
parentf08d6f0e2daf9f3d9daa070eee223855b33c430d (diff)
parent4e22e88b914ffb63393449c5e20fe8843a7ce93b (diff)
Merge remote-tracking branch 'upstream/staging' into deps-reorg
Diffstat (limited to 'pkgs/desktops/gnome-3/games/lightsoff')
-rw-r--r--pkgs/desktops/gnome-3/games/lightsoff/default.nix20
-rw-r--r--pkgs/desktops/gnome-3/games/lightsoff/src.nix10
2 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/games/lightsoff/default.nix b/pkgs/desktops/gnome-3/games/lightsoff/default.nix
new file mode 100644
index 000000000000..7bd3ca95de94
--- /dev/null
+++ b/pkgs/desktops/gnome-3/games/lightsoff/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook
+, intltool, itstool, clutter, clutter_gtk, libxml2, dconf }:
+
+stdenv.mkDerivation rec {
+ inherit (import ./src.nix fetchurl) name src;
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg dconf
+ libxml2 clutter clutter_gtk wrapGAppsHook itstool intltool ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ homepage = https://wiki.gnome.org/Apps/Lightsoff;
+ description = "Puzzle game, where the objective is to turn off all of the tiles on the board";
+ maintainers = gnome3.maintainers;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/desktops/gnome-3/games/lightsoff/src.nix b/pkgs/desktops/gnome-3/games/lightsoff/src.nix
new file mode 100644
index 000000000000..2a26df6615bd
--- /dev/null
+++ b/pkgs/desktops/gnome-3/games/lightsoff/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+ name = "lightsoff-3.24.0";
+
+ src = fetchurl {
+ url = mirror://gnome/sources/lightsoff/3.24/lightsoff-3.24.0.tar.xz;
+ sha256 = "5d1bb7de4b3f5c7814e5599a5171cfdeef74e774a8a6dbd992c893a5af6bd8ce";
+ };
+}