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

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

30 lines
848 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, coreutils }:
2015-07-22 01:24:31 +00:00
stdenv.mkDerivation rec {
pname = "entr";
version = "5.2";
2015-07-22 01:24:31 +00:00
src = fetchurl {
2021-03-01 00:49:58 +00:00
url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
hash = "sha256-I34wnUawdSEMDky3ib/Qycd37d9sswNBw/49vMZYw4A=";
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)" ];
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 01:24:31 +00:00
};
}