mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, installShellFiles
|
|
, ncurses
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tmatrix";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "M4444";
|
|
repo = "TMatrix";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-G3dg0SWfBjCA66TTxkVAcVrFNJOWE9+GJXYKzCUX34w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake installShellFiles ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
postInstall = ''
|
|
installManPage ../tmatrix.6
|
|
'';
|
|
|
|
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 ];
|
|
mainProgram = "tmatrix";
|
|
};
|
|
}
|