biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / neo / default.nix
blob27216c381db64722951f0b0c763a1fb918033826
1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "neo";
5   version = "0.6.1";
7   src = fetchurl {
8     url = "https://github.com/st3w/neo/releases/download/v${version}/neo-${version}.tar.gz";
9     sha256 = "sha256-pV5O1e/QpK8kjRYBinqq07YX7x06wF0pKiWKOKr0ank=";
10   };
12   buildInputs = [ ncurses ];
14   meta = with lib; {
15     description = ''Simulates the digital rain from "The Matrix"'';
16     license = licenses.gpl3Plus;
17     longDescription = ''
18       neo recreates the digital rain effect from "The Matrix". Streams of random
19       characters will endlessly scroll down your terminal screen.
20     '';
21     homepage = "https://github.com/st3w/neo";
22     platforms = ncurses.meta.platforms;
23     maintainers = [ maintainers.abbe ];
24     mainProgram = "neo";
25   };