nixpkgs/pkgs/tools/misc/entr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1 KiB
Nix
Raw Normal View History

2021-06-21 06:20:00 +02:00
{ lib, stdenv, fetchurl, coreutils, ncurses, fetchpatch }:
2015-07-22 03:24:31 +02:00
stdenv.mkDerivation rec {
pname = "entr";
2022-01-01 13:25:39 +01:00
version = "5.1";
2015-07-22 03:24:31 +02:00
src = fetchurl {
2021-03-01 01:49:58 +01:00
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
2022-01-01 13:25:39 +01:00
hash = "sha256-D4f1d7zodkHFJa3bm8xgu6pXn+mB2rdZBD484VVtu5I=";
2015-07-22 03:24:31 +02: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 03:24:31 +02: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 01:49:58 +01:00
homepage = "https://eradman.com/entrproject/";
description = "Run arbitrary commands when files change";
2021-03-01 01:49:58 +01:00
changelog = "https://github.com/eradman/entr/raw/${version}/NEWS";
2016-03-20 13:22:58 +01:00
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ pSub synthetica ];
2015-07-22 03:24:31 +02:00
};
}