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>2021-06-21 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-06-21 04:20:00 +0000
commit23e36778a13ca70c16535fbbd47590ec4205178d (patch)
tree9e50d146ee8c9f1ed99ecf6691451e9127122dc1 /pkgs/tools/misc/entr
parent09ee9f4c72d8b564bd6f3e26f1911404883a6a61 (diff)
entr: fix segfault on darwin
Diffstat (limited to 'pkgs/tools/misc/entr')
-rw-r--r--pkgs/tools/misc/entr/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix
index dd5d960085b14..abfd12523db9b 100644
--- a/pkgs/tools/misc/entr/default.nix
+++ b/pkgs/tools/misc/entr/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, coreutils, ncurses }:
+{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
 
 stdenv.mkDerivation rec {
   pname = "entr";
@@ -9,6 +9,16 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-4lak0vvkb2EyRggzukR+ZdfzW6nQsmXnxBUDl8xEBaI=";
   };
 
+  patches = lib.optionals stdenv.isDarwin [
+    # Fix v4.9 segfault on Darwin. remove with the next update
+    # https://github.com/eradman/entr/issues/74
+    (fetchpatch {
+      url = "https://github.com/eradman/entr/commit/468d77d45925abba826bb1dcda01487dbe37eb33.patch";
+      sha256 = "17kkcrsnac0pb930sf2kix71h4c7krzsrvz8pskx0vm39n1c9xfi";
+      includes = [ "entr.c" ];
+    })
+  ];
+
   postPatch = ''
     substituteInPlace Makefile.bsd --replace /bin/echo echo
     substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat