3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/entr/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

2021-06-21 05:20:00 +01:00
{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
2015-07-22 02:24:31 +01:00
stdenv.mkDerivation rec {
pname = "entr";
2021-08-15 20:22:15 +01:00
version = "5.0";
2015-07-22 02:24:31 +01:00
src = fetchurl {
2021-03-01 00:49:58 +00:00
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
2021-08-15 20:22:15 +01:00
sha256 = "1fqyshn9i213h6hiy31xlm719f6vayskfna92kvbd2aykryvp1ra";
2015-07-22 02:24:31 +01: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 02:24:31 +01: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 02:24:31 +01:00
};
}