nixpkgs/pkgs/tools/misc/nvimpager/default.nix
Lucas Hoffmann 4d0c6c645c
nvimpager: init at 0.9 (#107057)
* nvimpager: init at 0.9

* nvimpager: fixup: doCheck can be overriden with `overrideAttrs`

* nvimpager: fixup: use patchShebangs instead of substituteInPlace

* nvimpager: fixup: move pandoc to nativeBuildInputs

* Fix typo

* nvimpager: fixup: run the tests in a pseudo tty

* nvimpager: fixup: make all dependencies overridable
2020-12-22 10:11:02 +01:00

48 lines
1.3 KiB
Nix

{ fetchFromGitHub
, stdenv
, ncurses, neovim, procps
, pandoc, lua51Packages, util-linux
}:
stdenv.mkDerivation rec {
pname = "nvimpager";
version = "0.9";
src = fetchFromGitHub {
owner = "lucc";
repo = pname;
rev = "v${version}";
sha256 = "1xy5387szfw0bp8dr7d4z33wd4xva7q219rvz8gc0vvv1vsy73va";
};
buildInputs = [
ncurses # for tput
procps # for nvim_get_proc() which uses ps(1)
];
nativeBuildInputs = [ pandoc ];
makeFlags = [ "PREFIX=$(out)" ];
buildFlags = [ "nvimpager.configured" ];
preBuild = ''
patchShebangs nvimpager
substituteInPlace nvimpager --replace ':-nvim' ':-${neovim}/bin/nvim'
'';
doCheck = true;
checkInputs = [ lua51Packages.busted util-linux neovim ];
checkPhase = ''script -c "busted --lpath './?.lua' test"'';
meta = with stdenv.lib; {
description = "Use neovim as pager";
longDescription = ''
Use neovim as a pager to view manpages, diffs, etc with nvim's syntax
highlighting. Includes a cat mode to print highlighted files to stdout
and a ansi esc mode to highlight ansi escape sequences in neovim.
'';
homepage = "https://github.com/lucc/nvimpager";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.lucc ];
};
}