mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 10:00:56 +00:00
376bb002e4
According to https://github.com/abishekvashok/cmatrix/blob/v2.0/COPYING and https://github.com/abishekvashok/cmatrix/tree/v2.0#license, CMatrix 2.0 is licensed under GPL 3. part of #43716
29 lines
803 B
Nix
29 lines
803 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cmatrix";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abishekvashok";
|
|
repo = "cmatrix";
|
|
rev = "v${version}";
|
|
sha256 = "1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simulates the falling characters theme from The Matrix movie";
|
|
license = licenses.gpl3;
|
|
longDescription = ''
|
|
CMatrix simulates the display from "The Matrix" and is based
|
|
on the screensaver from the movie's website.
|
|
'';
|
|
homepage = http://www.asty.org/cmatrix/;
|
|
platforms = ncurses.meta.platforms;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
};
|
|
}
|