1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
8 url = "https://github.com/st3w/neo/releases/download/v${version}/neo-${version}.tar.gz";
9 sha256 = "sha256-pV5O1e/QpK8kjRYBinqq07YX7x06wF0pKiWKOKr0ank=";
12 buildInputs = [ ncurses ];
15 description = ''Simulates the digital rain from "The Matrix"'';
16 license = licenses.gpl3Plus;
18 neo recreates the digital rain effect from "The Matrix". Streams of random
19 characters will endlessly scroll down your terminal screen.
21 homepage = "https://github.com/st3w/neo";
22 platforms = ncurses.meta.platforms;
23 maintainers = [ maintainers.abbe ];