mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
gnome-taquin: init at 3.16.1
This commit is contained in:
parent
3b95ae79cd
commit
014d6583e7
@ -37,7 +37,7 @@ let
|
||||
tali quadrapassel gnome-sudoku aisleriot five-or-more
|
||||
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
|
||||
gnome-mines gnome-nibbles gnome-robots gnome-tetravex
|
||||
hitori
|
||||
hitori gnome-taquin
|
||||
];
|
||||
|
||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
@ -321,6 +321,8 @@ let
|
||||
|
||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||
|
||||
gnome-taquin = callPackage ./games/gnome-taquin { };
|
||||
|
||||
gnome-tetravex = callPackage ./games/gnome-tetravex { };
|
||||
|
||||
hitori = callPackage ./games/hitori { };
|
||||
|
25
pkgs/desktops/gnome-3/3.16/games/gnome-taquin/default.nix
Normal file
25
pkgs/desktops/gnome-3/3.16/games/gnome-taquin/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||
, librsvg, libcanberra_gtk3, intltool, itstool, libxml2
|
||||
, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-taquin-${gnome3.version}.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-taquin/${gnome3.version}/${name}.tar.xz";
|
||||
sha256 = "024a1ing1iclmyhi5vlps6xna84vgy7s098h9yvzq43fsahmx8pi";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig gtk3 wrapGAppsHook librsvg libcanberra_gtk3
|
||||
intltool itstool libxml2 hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Taquin;
|
||||
description = "Move tiles so that they reach their places";
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user