about summary refs log tree commit diff
path: root/pkgs/applications/editors/ed
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-01-13 23:08:41 +0000
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2021-01-22 21:35:56 +0100
commit80c367cf1beee543c7d5f4b5199ed0cb006f0c4e (patch)
treefd9442f78aff2e583fb435f9208b275728d15734 /pkgs/applications/editors/ed
parenta1a23a0710c7818c5756d80030d2697b79e0fc28 (diff)
ed: 1.16 -> 1.17
See https://lists.gnu.org/archive/html/info-gnu/2021-01/msg00010.html
for release information
Diffstat (limited to 'pkgs/applications/editors/ed')
-rw-r--r--pkgs/applications/editors/ed/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index 3ceb037583a2b..a6ab483a7b076 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -7,12 +7,12 @@
 # files.
 
 stdenv.mkDerivation (rec {
-  name = "ed-${version}";
-  version = "1.16";
+  pname = "ed";
+  version = "1.17";
 
   src = fetchurl {
-    url = "mirror://gnu/ed/${name}.tar.lz";
-    sha256 = "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g";
+    url = "mirror://gnu/ed/${pname}-${version}.tar.lz";
+    sha256 = "0m2yrkfjjraakxr98nsiakqrn351h99n706x9asgmdi57j43kpki";
   };
 
   nativeBuildInputs = [ lzip ];