2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchzip, xorg }:
|
2019-04-08 23:57:22 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "xtris";
|
2019-04-08 23:57:22 +03:00
|
|
|
version = "1.15";
|
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://web.archive.org/web/20120315061213/http://www.iagora.com/~espel/xtris/xtris-${version}.tar.gz";
|
|
|
|
sha256 = "1vqva99lyv7r6f9c7yikk8ahcfh9aq3clvwm4pz964wlbr9mj1v6";
|
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i '
|
|
|
|
s:/usr/local/bin:'$out'/bin:
|
|
|
|
s:/usr/local/man:'$out'/share/man:
|
|
|
|
s:mkdir:mkdir -p:g
|
|
|
|
s:^CFLAGS:#CFLAGS:
|
|
|
|
' Makefile
|
|
|
|
'';
|
|
|
|
buildInputs = [ xorg.libX11 ];
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2019-04-08 23:57:22 +03:00
|
|
|
description = "A multi-player version of the classical game of Tetris, for the X Window system";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://web.archive.org/web/20120315061213/http://www.iagora.com/~espel/xtris/xtris.html";
|
2019-04-08 23:57:22 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|