Merge pull request #23526 from oxij/pkg/speedread

speedread: init at git-2016-09-21

authored by Jörg Thalheim and committed by GitHub 290297ec 4ae0e8c9

+34
+32
pkgs/applications/misc/speedread/default.nix
··· 1 + { stdenv, fetchFromGitHub, perl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "speedread-unstable-2016-09-21"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "pasky"; 8 + repo = "speedread"; 9 + rev = "93acfd61a1bf4482537ce5d71b9164b8446cb6bd"; 10 + sha256 = "1h94jx3v18fdlc64lfmj2g5x63fjyqb8c56k5lihl7bva0xgdkxd"; 11 + }; 12 + 13 + buildInputs = [ perl ]; 14 + 15 + installPhase = '' 16 + install -m755 -D speedread $out/bin/speedread 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + description = "A simple terminal-based open source Spritz-alike"; 21 + longDescription = '' 22 + Speedread is a command line filter that shows input text as a 23 + per-word rapid serial visual presentation aligned on optimal 24 + reading points. This allows reading text at a much more rapid 25 + pace than usual as the eye can stay fixed on a single place. 26 + ''; 27 + homepage = src.meta.homepage; 28 + license = licenses.mit; 29 + platforms = platforms.unix; 30 + maintainers = [ maintainers.oxij ]; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 14609 14609 14610 14610 sudolikeaboss = callPackage ../tools/security/sudolikeaboss { }; 14611 14611 14612 + speedread = callPackage ../applications/misc/speedread { }; 14613 + 14612 14614 sup = callPackage ../applications/networking/mailreaders/sup { 14613 14615 ruby = ruby_2_3.override { cursesSupport = true; }; 14614 14616 };