Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

ed: 1.12 -> 1.13 #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/applications/editors/ed/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
name = "ed-1.12";
name = "ed-1.13";

src = fetchurl {
# gnu only provides *.lz tarball, which is unfriendly for stdenv bootstrapping
#url = "mirror://gnu/ed/${name}.tar.gz";
# When updating, please make sure the sources pulled match those upstream by
# Unpacking both tarballs and running `find . -type f -exec sha256sum \{\} \; | sha256sum`
# in the resulting directory
url = "http://fossies.org/linux/privat/${name}.tar.gz";
sha256 = "111ci6x43bcmylqhrzr32l0q8pplmpb4kiq5pb6cyp0yxkb2dhgj";
url = "http://fossies.org/linux/privat/${name}.tar.bz2";
sha256 = "1iym2fsamxr886l3sz8lqzgf00bip5cr0aly8jp04f89kf5mvl0j";
};

/* FIXME: Tests currently fail on Darwin:
Expand Down