biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / tmatrix / default.nix
blob802b20c5557690f58d74f86a1520681cd80084db
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , cmake
5 , installShellFiles
6 , ncurses
7 }:
9 stdenv.mkDerivation rec {
10   pname = "tmatrix";
11   version = "1.4";
13   src = fetchFromGitHub {
14     owner = "M4444";
15     repo = "TMatrix";
16     rev = "v${version}";
17     sha256 = "sha256-G3dg0SWfBjCA66TTxkVAcVrFNJOWE9+GJXYKzCUX34w=";
18   };
20   nativeBuildInputs = [ cmake installShellFiles ];
21   buildInputs = [ ncurses ];
23   postInstall = ''
24     installManPage ../tmatrix.6
25   '';
27   meta = with lib; {
28     description = "Terminal based replica of the digital rain from The Matrix";
29     longDescription = ''
30       TMatrix is a program that simulates the digital rain form The Matrix.
31       It's focused on being the most accurate replica of the digital rain effect
32       achievable on a typical terminal, while also being customizable and
33       performant.
34     '';
35     homepage = "https://github.com/M4444/TMatrix";
36     license = licenses.gpl2;
37     platforms = platforms.all;
38     maintainers = with maintainers; [ Br1ght0ne ];
39     mainProgram = "tmatrix";
40   };