Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a1a23a0710c7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 80c367cf1bee
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 22, 2021

  1. ed: 1.16 -> 1.17

    lsix authored and FRidh committed Jan 22, 2021
    Copy the full SHA
    80c367c View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/editors/ed/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/editors/ed/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];