2020-01-16 13:52:37 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, installShellFiles
|
|
|
|
, ncurses
|
|
|
|
}:
|
2019-05-27 05:00:54 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tmatrix";
|
2020-01-16 13:52:37 +01:00
|
|
|
version = "1.3";
|
2019-05-27 05:00:54 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "M4444";
|
|
|
|
repo = "TMatrix";
|
|
|
|
rev = "v${version}";
|
2020-01-16 13:52:37 +01:00
|
|
|
sha256 = "1cvgxmdpdzpl8w4z3sh4g5pbd15rd8s1kcspi9v95yf9rydyy69s";
|
2019-05-27 05:00:54 +02:00
|
|
|
};
|
|
|
|
|
2020-01-16 13:52:37 +01:00
|
|
|
nativeBuildInputs = [ cmake installShellFiles ];
|
2019-05-27 05:00:54 +02:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2020-01-16 13:52:37 +01:00
|
|
|
installManPage ../tmatrix.6
|
2019-05-27 05:00:54 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Terminal based replica of the digital rain from The Matrix";
|
|
|
|
longDescription = ''
|
|
|
|
TMatrix is a program that simulates the digital rain form The Matrix.
|
|
|
|
It's focused on being the most accurate replica of the digital rain effect
|
|
|
|
achievable on a typical terminal, while also being customizable and
|
|
|
|
performant.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/M4444/TMatrix";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2020-01-16 13:53:10 +01:00
|
|
|
maintainers = with maintainers; [ infinisil filalex77 ];
|
2019-05-27 05:00:54 +02:00
|
|
|
};
|
|
|
|
}
|