mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
23 lines
730 B
Nix
23 lines
730 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf
|
|
, librsvg, libcanberra_gtk3
|
|
, intltool, itstool, libxml2, clutter, clutter_gtk, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg
|
|
libcanberra_gtk3 itstool intltool clutter
|
|
libxml2 clutter_gtk wrapGAppsHook ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Apps/Quadrapassel;
|
|
description = "Classic falling-block game, Tetris";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|