7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
15 sha256 = "1vpci7vqzcpdd21zgigyz38k77r9fc81dmiwsvfr8w7gad5sg6sj";
18 nativeBuildInputs = [ cmake ];
20 buildInputs = [ icu openssl ];
23 homepage = "https://octobanana.com/software/fltrdr";
24 description = "TUI text reader for the terminal";
27 Fltrdr, or flat-reader, is an interactive text reader for the terminal. It
28 is flat in the sense that the reader is word-based. It creates a
29 horizontal stream of words, ignoring all newline characters and reducing
30 extra whitespace. Its purpose is to facilitate reading, scanning, and
31 searching text. The program has a play mode that moves the reader forward
32 one word at a time, along with a configurable words per minute (WPM),
36 platforms = platforms.linux; # can only test linux
37 license = licenses.mit;
38 maintainers = [ maintainers.matthiasbeyer ];
39 mainProgram = "fltrdr";