Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / gtetrinet / default.nix
blobaf16d5e9f748205ef30cfacbd2ae1f9d367ea46c
1 { fetchFromGitHub, lib, stdenv, autoreconfHook, intltool, pkg-config, libgnome, libgnomeui, GConf }:
3 stdenv.mkDerivation {
4   pname = "gtetrinet";
5   version = "0.7.11";
7   src = fetchFromGitHub {
8     owner = "GNOME";
9     repo = "gtetrinet";
10     rev = "6be3df83f3dc5c7cb966e6cd447182df01b93222";
11     sha256 = "1y05x8lfyxvkjg6c87cfd0xxmb22c88scx8fq3gah7hjy5i42v93";
12   };
14   nativeBuildInputs = [ autoreconfHook intltool pkg-config ];
16   buildInputs = [ libgnome libgnomeui ];
18   propagatedUserEnvPkgs = [ GConf ];
20   postAutoreconf = ''
21     intltoolize --force
22   '';
24   preInstall = ''
25     export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
26   '';
28   postInstall = ''
29     mv "$out/games" "$out/bin"
30   '';
32   enableParallelBuilding = true;
34   meta = {
35     description = "Client for Tetrinet, a multiplayer online Tetris game";
36     longDescription = ''
37       GTetrinet is a client program for Tetrinet, a multiplayer tetris game
38       that is played over the internet.
39     '';
40     homepage = "https://gtetrinet.sourceforge.net/";
41     license = lib.licenses.gpl2;
42     platforms = lib.platforms.unix;
43     maintainers = [ lib.maintainers.chris-martin ];
44   };