2022-06-01 04:20:00 +00:00
|
|
|
{ lib, stdenv, fetchurl, coreutils }:
|
2015-07-22 01:24:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "entr";
|
2024-07-02 00:24:38 +00:00
|
|
|
version = "5.6";
|
2015-07-22 01:24:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-21 00:23:37 +00:00
|
|
|
url = "https://eradman.com/entrproject/code/entr-${version}.tar.gz";
|
2024-07-02 00:24:38 +00:00
|
|
|
hash = "sha256-AiK435KNO1o7UZTWPn3gmFM+BBkNnZoVS5JsbB+d0U4=";
|
2015-07-22 01:24:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat
|
|
|
|
substituteInPlace entr.1 --replace /bin/cat cat
|
|
|
|
'';
|
|
|
|
dontAddPrefix = true;
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2023-09-16 21:44:41 +00:00
|
|
|
TARGET_OS = stdenv.hostPlatform.uname.system;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-03-01 00:49:58 +00:00
|
|
|
homepage = "https://eradman.com/entrproject/";
|
2016-02-27 17:24:00 +00:00
|
|
|
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;
|
2019-10-08 12:24:14 +00:00
|
|
|
maintainers = with maintainers; [ pSub synthetica ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "entr";
|
2015-07-22 01:24:31 +00:00
|
|
|
};
|
|
|
|
}
|