19 lines
529 B
Nix
19 lines
529 B
Nix
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||
|
, libxml2, intltool, itstool }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
inherit (import ./src.nix fetchurl) name src;
|
||
|
|
||
|
buildInputs = [
|
||
|
pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 gnome3.defaultIconTheme
|
||
|
];
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|