nixpkgs/pkgs/tools/misc/entr/default.nix

43 lines
1.4 KiB
Nix
Raw Normal View History

2021-06-21 04:20:00 +00:00
{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
2015-07-22 01:24:31 +00:00
stdenv.mkDerivation rec {
pname = "entr";
2021-05-04 11:34:09 +00:00
version = "4.9";
2015-07-22 01:24:31 +00:00
src = fetchurl {
2021-03-01 00:49:58 +00:00
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
2021-05-04 11:34:09 +00:00
sha256 = "sha256-4lak0vvkb2EyRggzukR+ZdfzW6nQsmXnxBUDl8xEBaI=";
2015-07-22 01:24:31 +00:00
};
2021-06-21 04:20:00 +00:00
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" ];
})
];
2015-07-22 01:24:31 +00:00
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
2015-07-22 01:24:31 +00:00
substituteInPlace entr.1 --replace /bin/cat cat
substituteInPlace entr.1 --replace /usr/bin/clear clear
'';
dontAddPrefix = true;
doCheck = true;
checkTarget = "test";
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
2021-03-01 00:49:58 +00:00
homepage = "https://eradman.com/entrproject/";
description = "Run arbitrary commands when files change";
2021-03-01 00:49:58 +00:00
changelog = "https://github.com/eradman/entr/raw/${version}/NEWS";
2016-03-20 12:22:58 +00:00
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ pSub synthetica ];
2015-07-22 01:24:31 +00:00
};
}