about summary refs log tree commit diff
path: root/pkgs/tools/misc/entr
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-06-01 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-06-01 04:20:00 +0000
commit539a971f6dfadab63a301910a65be3f286c783a2 (patch)
tree45a207dd7d06775d190e844e84f3159cea2135a4 /pkgs/tools/misc/entr
parente6123938cafa5f5a368090c68d9012adb980da5f (diff)
entr: 5.1 -> 5.2
https://github.com/eradman/entr/raw/5.2/NEWS
Diffstat (limited to 'pkgs/tools/misc/entr')
-rw-r--r--pkgs/tools/misc/entr/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix
index 39c1a6abea48c..3c18345a0edf9 100644
--- a/pkgs/tools/misc/entr/default.nix
+++ b/pkgs/tools/misc/entr/default.nix
@@ -1,20 +1,17 @@
-{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
+{ lib, stdenv, fetchurl, coreutils }:
 
 stdenv.mkDerivation rec {
   pname = "entr";
-  version = "5.1";
+  version = "5.2";
 
   src = fetchurl {
     url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
-    hash = "sha256-D4f1d7zodkHFJa3bm8xgu6pXn+mB2rdZBD484VVtu5I=";
+    hash = "sha256-I34wnUawdSEMDky3ib/Qycd37d9sswNBw/49vMZYw4A=";
   };
 
   postPatch = ''
-    substituteInPlace Makefile.bsd --replace /bin/echo echo
     substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat
-    substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.out}/bin/clear
     substituteInPlace entr.1 --replace /bin/cat cat
-    substituteInPlace entr.1 --replace /usr/bin/clear clear
   '';
   dontAddPrefix = true;
   doCheck = true;