nixpkgs/pkgs/tools/misc/entr/default.nix
2017-03-15 17:22:35 +13:00

32 lines
957 B
Nix

{ stdenv, fetchurl, coreutils, ncurses }:
stdenv.mkDerivation rec {
name = "entr-${version}";
version = "3.7";
src = fetchurl {
url = "http://entrproject.org/code/${name}.tar.gz";
sha256 = "0bx2ivx9hwixjwmk7aqlx20mwmn3cvryppnmc285d7byiw6dbvwl";
};
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)" ];
meta = with stdenv.lib; {
homepage = http://entrproject.org/;
description = "Run arbitrary commands when files change";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}