mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gnome-tetravex: init at 3.16.0
This commit is contained in:
parent
d921092479
commit
b24734ff10
2 changed files with 26 additions and 1 deletions
|
@ -36,7 +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 gnome-nibbles gnome-robots
|
||||
gnome-mines gnome-nibbles gnome-robots gnome-tetravex
|
||||
];
|
||||
|
||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
|
@ -318,6 +318,8 @@ let
|
|||
|
||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||
|
||||
gnome-tetravex = callPackage ./games/gnome-tetravex { };
|
||||
|
||||
iagno = callPackage ./games/iagno { };
|
||||
|
||||
lightsoff = callPackage ./games/lightsoff { };
|
||||
|
|
23
pkgs/desktops/gnome-3/3.16/games/gnome-tetravex/default.nix
Normal file
23
pkgs/desktops/gnome-3/3.16/games/gnome-tetravex/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||
, libxml2, intltool, itstool, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-tetravex-${gnome3.version}.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-tetravex/${gnome3.version}/${name}.tar.xz";
|
||||
sha256 = "07cmcmrd5fj8vm682894gra2vj8jwx01n3ggjinl93yv4gwpplz9";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Tetravex;
|
||||
description = "Complete the puzzle by matching numbered tiles";
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue