gnome-mines: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 13:31:11 +02:00
parent fd75bf0c7d
commit 99f32bad76
2 changed files with 27 additions and 0 deletions

View file

@ -36,6 +36,7 @@ let
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
tali quadrapassel gnome-sudoku aisleriot five-or-more
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
gnome-mines
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -309,6 +310,8 @@ let
gnome-mahjongg = callPackage ./games/gnome-mahjongg { };
gnome-mines = callPackage ./games/gnome-mines { };
gnome-sudoku = callPackage ./games/gnome-sudoku { };
iagno = callPackage ./games/iagno { };

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, librsvg, intltool, itstool, libxml2, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "gnome-mines-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-mines/${gnome3.version}/${name}.tar.xz";
sha256 = "0f0496nhirvpw4zk8bcl24rb2v20cm3gw8d5ybmch42mscmjrb0p";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Mines;
description = "Clear hidden mines from a minefield";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}