nixpkgs/pkgs/applications/misc/tmatrix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, cmake
, installShellFiles
, ncurses
}:
2019-05-27 06:00:54 +03:00
stdenv.mkDerivation rec {
pname = "tmatrix";
2021-12-22 07:58:07 +03:00
version = "1.4";
2019-05-27 06:00:54 +03:00
src = fetchFromGitHub {
owner = "M4444";
repo = "TMatrix";
rev = "v${version}";
2021-12-22 07:58:07 +03:00
sha256 = "sha256-G3dg0SWfBjCA66TTxkVAcVrFNJOWE9+GJXYKzCUX34w=";
2019-05-27 06:00:54 +03:00
};
nativeBuildInputs = [ cmake installShellFiles ];
2019-05-27 06:00:54 +03:00
buildInputs = [ ncurses ];
postInstall = ''
installManPage ../tmatrix.6
2019-05-27 06:00:54 +03: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;
maintainers = with maintainers; [ Br1ght0ne ];
2024-02-11 05:19:15 +03:00
mainProgram = "tmatrix";
2019-05-27 06:00:54 +03:00
};
}