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
923 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, coreutils }:
2015-07-22 01:24:31 +00:00
stdenv.mkDerivation rec {
pname = "entr";
2023-11-18 03:20:00 +00:00
version = "5.5";
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";
2023-11-18 03:20:00 +00:00
hash = "sha256-EowM4u/qWua9P9M8PNMeFh6wwCYJ2HF6036VtBZW5SY=";
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;
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "entr";
2015-07-22 01:24:31 +00:00
};
}