about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-03-01 13:45:30 +0100
committerGitHub <noreply@github.com>2020-03-01 13:45:30 +0100
commit33133b2667a52dbd7b5a856390ae9231df34fea8 (patch)
tree7b32074f92bfbba4accb204ca0df5b4d23a9970c /pkgs/applications/editors
parent1b92a08a71c51733a19612c3fc84390700efc77f (diff)
parent79217339d26ff51ccacf10967de700d785f088e5 (diff)
downloadnixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar.gz
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar.bz2
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar.lz
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar.xz
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.tar.zst
nixlib-33133b2667a52dbd7b5a856390ae9231df34fea8.zip
Merge pull request #81167 from NixOS/staging-next
Staging next
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/ed/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index 90a7eeffb047..37d055e26852 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -3,11 +3,11 @@
 
 stdenv.mkDerivation (rec {
   name = "ed-${version}";
-  version = "1.15";
+  version = "1.16";
 
   src = fetchurl {
     url = "mirror://gnu/ed/${name}.tar.lz";
-    sha256 = "0x6ivy5k0d7dy5z9g8q8nipr89m4qbk2ink2898qq43smp08ji5d";
+    sha256 = "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g";
   };
 
   nativeBuildInputs = [ lzip ];
@@ -30,7 +30,7 @@ stdenv.mkDerivation (rec {
 
     license = stdenv.lib.licenses.gpl3Plus;
 
-    homepage = https://www.gnu.org/software/ed/;
+    homepage = "https://www.gnu.org/software/ed/";
 
     maintainers = [ ];
     platforms = stdenv.lib.platforms.unix;