about summary refs log tree commit diff
path: root/pkgs/tools/misc/nvimpager
diff options
context:
space:
mode:
authorLucas Hoffmann <lucc@posteo.de>2021-06-06 18:30:18 +0200
committerLucas Hoffmann <lucc@posteo.de>2021-11-14 21:36:54 +0100
commit145cae01895e1b4d4c562f8d8ecaab1f83473bf6 (patch)
tree059e3c7e684f8acfb00e2d6f2ce0fff202d9d92b /pkgs/tools/misc/nvimpager
parentdc19eaec1bf52aa5139a66a51f7899386c816596 (diff)
nvimpager: 0.10 -> 0.10.4
Diffstat (limited to 'pkgs/tools/misc/nvimpager')
-rw-r--r--pkgs/tools/misc/nvimpager/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/misc/nvimpager/default.nix b/pkgs/tools/misc/nvimpager/default.nix
index e079891988686..2a6415067d48e 100644
--- a/pkgs/tools/misc/nvimpager/default.nix
+++ b/pkgs/tools/misc/nvimpager/default.nix
@@ -6,13 +6,13 @@
 
 stdenv.mkDerivation rec {
   pname = "nvimpager";
-  version = "0.10";
+  version = "0.10.4";
 
   src = fetchFromGitHub {
     owner = "lucc";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-okYnPwuxU/syxcKIMUBc25r791D6Bug2w2axH4vvmAY=";
+    sha256 = "sha256-0guSL4RvYQFwok7zGuevhQY6DHjnETRLpEIEQfGslcg=";
   };
 
   buildInputs = [
@@ -26,9 +26,6 @@ stdenv.mkDerivation rec {
   preBuild = ''
     patchShebangs nvimpager
     substituteInPlace nvimpager --replace ':-nvim' ':-${neovim}/bin/nvim'
-    # remove git command from makefile as we run from a tarball
-    # replace with actual timestamp of the commit
-    substituteInPlace makefile --replace '$(shell git log -1 --no-show-signature --pretty="%ct")' 1623019602
     '';
 
   doCheck = true;