about summary refs log tree commit diff
path: root/pkgs/tools/misc/entr
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-03-01 00:49:58 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-03-01 00:49:58 +0000
commit87b3a29d0a93e352d1a49da67ebba956c3bf9c89 (patch)
tree65545cefbc248abfa39709a3bdeb5a9cdcb6a01a /pkgs/tools/misc/entr
parent6ed55034eec21f50c33afe7b4c4f5c13d49eba72 (diff)
entr: 4.7 -> 4.8
Diffstat (limited to 'pkgs/tools/misc/entr')
-rw-r--r--pkgs/tools/misc/entr/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix
index 581b39f3c4ce6..5d8d0d9420101 100644
--- a/pkgs/tools/misc/entr/default.nix
+++ b/pkgs/tools/misc/entr/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "entr";
-  version = "4.7";
+  version = "4.8";
 
   src = fetchurl {
-    url = "http://entrproject.org/code/${pname}-${version}.tar.gz";
-    sha256 = "sha256-tsGrdkTYO7Kiadx0Fghno74PXfEWx+tFPCUFMXNTRCk=";
+    url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz";
+    sha256 = "1bi5fhr93n72pkap4mqsjd1pwnqjf6czg359c5xwczavfk6mamgh";
   };
 
   postPatch = ''
@@ -22,8 +22,9 @@ stdenv.mkDerivation rec {
   installFlags = [ "PREFIX=$(out)" ];
 
   meta = with lib; {
-    homepage = "http://entrproject.org/";
+    homepage = "https://eradman.com/entrproject/";
     description = "Run arbitrary commands when files change";
+    changelog = "https://github.com/eradman/entr/raw/${version}/NEWS";
     license = licenses.isc;
     platforms = platforms.all;
     maintainers = with maintainers; [ pSub synthetica ];