nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 31 lines 787 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 ncurses, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "neo"; 10 version = "0.6.1"; 11 12 src = fetchurl { 13 url = "https://github.com/st3w/neo/releases/download/v${version}/neo-${version}.tar.gz"; 14 sha256 = "sha256-pV5O1e/QpK8kjRYBinqq07YX7x06wF0pKiWKOKr0ank="; 15 }; 16 17 buildInputs = [ ncurses ]; 18 19 meta = with lib; { 20 description = ''Simulates the digital rain from "The Matrix"''; 21 license = licenses.gpl3Plus; 22 longDescription = '' 23 neo recreates the digital rain effect from "The Matrix". Streams of random 24 characters will endlessly scroll down your terminal screen. 25 ''; 26 homepage = "https://github.com/st3w/neo"; 27 platforms = ncurses.meta.platforms; 28 maintainers = [ maintainers.abbe ]; 29 mainProgram = "neo"; 30 }; 31}