1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #62107 from Infinisil/add/tmatrix

tmatrix: init at 1.0
This commit is contained in:
Ryan Mulligan 2019-05-26 21:59:18 -07:00 committed by GitHub
commit ae2f761306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, lib, fetchFromGitHub, cmake, ncurses }:
stdenv.mkDerivation rec {
pname = "tmatrix";
version = "1.0";
src = fetchFromGitHub {
owner = "M4444";
repo = "TMatrix";
rev = "v${version}";
sha256 = "1g0gn4p02vjc6l8lc78wlx4xkd74ha7ybx9fvvdr6mizk0cyjili";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ ncurses ];
postInstall = ''
mkdir -p $out/share/man/man6
install -m 0644 ../tmatrix.6 $out/share/man/man6
'';
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; [ infinisil ];
};
}

View file

@ -20364,6 +20364,8 @@ in
inherit (linuxPackages) x86_energy_perf_policy;
};
tmatrix = callPackage ../applications/misc/tmatrix { };
tnef = callPackage ../applications/misc/tnef { };
todiff = callPackage ../applications/misc/todiff { };