nixpkgs/pkgs/games/gtetrinet/default.nix

46 lines
1.1 KiB
Nix
Raw Permalink Normal View History

{ fetchFromGitHub, lib, stdenv, autoreconfHook, intltool, pkg-config, libgnome, libgnomeui, GConf }:
2017-11-15 04:39:08 +00:00
stdenv.mkDerivation {
2021-06-22 21:44:58 +00:00
pname = "gtetrinet";
version = "0.7.11";
2017-11-15 04:39:08 +00:00
src = fetchFromGitHub {
owner = "GNOME";
repo = "gtetrinet";
rev = "6be3df83f3dc5c7cb966e6cd447182df01b93222";
sha256 = "1y05x8lfyxvkjg6c87cfd0xxmb22c88scx8fq3gah7hjy5i42v93";
};
nativeBuildInputs = [ autoreconfHook intltool pkg-config ];
buildInputs = [ libgnome libgnomeui ];
propagatedUserEnvPkgs = [ GConf ];
postAutoreconf = ''
2017-11-15 04:39:08 +00:00
intltoolize --force
'';
preInstall = ''
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
'';
2017-11-15 04:39:08 +00:00
postInstall = ''
mv "$out/games" "$out/bin"
'';
enableParallelBuilding = true;
2017-11-15 04:39:08 +00:00
meta = {
description = "Client for Tetrinet, a multiplayer online Tetris game";
2017-11-15 04:39:08 +00:00
longDescription = ''
GTetrinet is a client program for Tetrinet, a multiplayer tetris game
that is played over the internet.
'';
homepage = "http://gtetrinet.sourceforge.net/";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.chris-martin ];
2017-11-15 04:39:08 +00:00
};
}