10 stdenvNoCC.mkDerivation rec {
14 src = fetchFromGitHub {
18 hash = "sha256-bCqgLkbZGQFcxhLwekVw+rUGinXTc7QJHlVRGtNf6Jc=";
32 install -Dm755 -t $out/bin rfc
33 wrapProgram $out/bin/rfc \
34 --prefix PATH : ${lib.makeBinPath [ curl ]}
35 installManPage man/rfc.1
41 description = "Tool to read RFCs from the command line";
43 rfc is a little tool written in Bash to read RFCs from the command-line.
44 It fetches RFCs and drafts from the Web and caches them locally.
46 homepage = "https://github.com/bfontaine/rfc";
47 changelog = "https://github.com/bfontaine/rfc/blob/${src.rev}/CHANGELOG.md";
48 license = licenses.mit;
49 maintainers = with maintainers; [ azahi ];
50 platforms = platforms.all;