biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / speedread / default.nix
blobe62edf48cbadc94d83e8040a762c55fda1b18282
1 { lib, stdenv, fetchFromGitHub, perl }:
3 stdenv.mkDerivation rec {
4   pname = "speedread";
5   version = "unstable-2016-09-21";
7   src = fetchFromGitHub {
8     owner = "pasky";
9     repo = "speedread";
10     rev = "93acfd61a1bf4482537ce5d71b9164b8446cb6bd";
11     sha256 = "1h94jx3v18fdlc64lfmj2g5x63fjyqb8c56k5lihl7bva0xgdkxd";
12   };
14   buildInputs = [ perl ];
16   installPhase = ''
17     install -m755 -D speedread $out/bin/speedread
18   '';
20   meta = with lib; {
21     description = "Simple terminal-based open source Spritz-alike";
22     longDescription = ''
23       Speedread is a command line filter that shows input text as a
24       per-word rapid serial visual presentation aligned on optimal
25       reading points. This allows reading text at a much more rapid
26       pace than usual as the eye can stay fixed on a single place.
27     '';
28     homepage = src.meta.homepage;
29     license = licenses.mit;
30     platforms = platforms.unix;
31     maintainers = [ maintainers.oxij ];
32     mainProgram = "speedread";
33   };