forked from mirrors/nixpkgs
431e0454c3
The -e option to script(1) propagates the exit status of the child. This revealed that one test currently hangs indefinitely in the nix sandbox, hence it was deactivated.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ fetchFromGitHub
|
|
, lib, stdenv
|
|
, ncurses, neovim, procps
|
|
, scdoc, lua51Packages, util-linux
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nvimpager";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lucc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-tjnmY7dJUE5k8hlAfNKcHqmpw0ciS6T5WJOpDvvt2V0=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses # for tput
|
|
procps # for nvim_get_proc() which uses ps(1)
|
|
];
|
|
nativeBuildInputs = [ scdoc ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
buildFlags = [ "nvimpager.configured" "nvimpager.1" ];
|
|
preBuild = ''
|
|
patchShebangs nvimpager
|
|
substituteInPlace nvimpager --replace ':-nvim' ':-${neovim}/bin/nvim'
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkInputs = [ lua51Packages.busted util-linux neovim ];
|
|
# filter out one test that fails in the sandbox of nix
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
script -ec "busted --lpath './?.lua' --filter-out 'handles man' test"
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
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 ];
|
|
};
|
|
}
|