Commit af743dc9 authored by Lucas Hoffmann's avatar Lucas Hoffmann Committed by Matthieu Coudron
Browse files

nvimpager: 0.11.0 -> 0.12.0

parent f431ee4a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
  '';