2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, coreutils, ncurses }:
|
2015-07-21 18:24:31 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "entr";
|
2021-02-28 16:49:58 -08:00
|
|
|
version = "4.8";
|
2015-07-21 18:24:31 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-28 16:49:58 -08:00
|
|
|
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "1bi5fhr93n72pkap4mqsjd1pwnqjf6czg359c5xwczavfk6mamgh";
|
2015-07-21 18:24:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.bsd --replace /bin/echo echo
|
|
|
|
substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat
|
2016-02-01 09:18:39 -08:00
|
|
|
substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.out}/bin/clear
|
2015-07-21 18:24:31 -07: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)" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2021-02-28 16:49:58 -08:00
|
|
|
homepage = "https://eradman.com/entrproject/";
|
2016-02-27 09:24:00 -08:00
|
|
|
description = "Run arbitrary commands when files change";
|
2021-02-28 16:49:58 -08:00
|
|
|
changelog = "https://github.com/eradman/entr/raw/${version}/NEWS";
|
2016-03-20 05:22:58 -07:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.all;
|
2019-10-08 05:24:14 -07:00
|
|
|
maintainers = with maintainers; [ pSub synthetica ];
|
2015-07-21 18:24:31 -07:00
|
|
|
};
|
|
|
|
}
|