2021-06-28 23:13:55 +00:00
|
|
|
{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "entr";
|
2022-01-03 16:56:52 +00:00
|
|
|
version = "5.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-09 03:18:52 +00:00
|
|
|
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
|
2022-01-03 16:56:52 +00:00
|
|
|
hash = "sha256-D4f1d7zodkHFJa3bm8xgu6pXn+mB2rdZBD484VVtu5I=";
|
2020-04-24 23:36:52 +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
|
|
|
|
substituteInPlace entr.1 --replace /bin/cat cat
|
|
|
|
substituteInPlace entr.1 --replace /usr/bin/clear clear
|
|
|
|
'';
|
|
|
|
dontAddPrefix = true;
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-03-09 03:18:52 +00:00
|
|
|
homepage = "https://eradman.com/entrproject/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Run arbitrary commands when files change";
|
2021-03-09 03:18:52 +00:00
|
|
|
changelog = "https://github.com/eradman/entr/raw/${version}/NEWS";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ pSub synthetica ];
|
|
|
|
};
|
|
|
|
}
|