nvimpager: 0.11.0 -> 0.12.0

This commit is contained in:
Lucas Hoffmann 2023-05-10 08:08:13 +02:00 committed by Matthieu Coudron
parent f431ee4a85
commit af743dc9e1

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "nvimpager";
version = "0.11.0";
version = "0.12.0";
src = fetchFromGitHub {
owner = "lucc";
repo = pname;
rev = "v${version}";
sha256 = "sha256-tjnmY7dJUE5k8hlAfNKcHqmpw0ciS6T5WJOpDvvt2V0=";
sha256 = "sha256-RmpPWS9gnBnR+Atw6uzBmeDSgoTOFSdKzHoJ84O+gyA=";
};
buildInputs = [
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
# filter out one test that fails in the sandbox of nix
checkPhase = ''
runHook preCheck
script -ec "busted --lpath './?.lua' --filter-out 'handles man' test"
make test BUSTED='busted --output TAP --exclude-tags=nix'
runHook postCheck
'';