2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
|
2015-07-29 14:36:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-06 01:23:38 -07:00
|
|
|
pname = "cmatrix";
|
|
|
|
version = "2.0";
|
2015-07-29 14:36:02 -07:00
|
|
|
|
2019-08-06 01:23:38 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "abishekvashok";
|
|
|
|
repo = "cmatrix";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm";
|
2015-07-29 14:36:02 -07:00
|
|
|
};
|
|
|
|
|
2019-08-06 01:23:38 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ ncurses ];
|
2015-07-29 14:36:02 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-07-29 14:36:02 -07:00
|
|
|
description = "Simulates the falling characters theme from The Matrix movie";
|
2019-10-04 17:03:07 -07:00
|
|
|
license = licenses.gpl3;
|
2015-07-29 14:36:02 -07:00
|
|
|
longDescription = ''
|
|
|
|
CMatrix simulates the display from "The Matrix" and is based
|
2019-08-06 01:23:38 -07:00
|
|
|
on the screensaver from the movie's website.
|
2015-07-29 14:36:02 -07:00
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/abishekvashok/cmatrix";
|
2015-07-29 14:36:02 -07:00
|
|
|
platforms = ncurses.meta.platforms;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|