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: 0587291836fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db942b99ecf1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 19, 2021

  1. diffstat: 1.63 -> 1.64

    r-ryantm committed Jan 19, 2021
    Copy the full SHA
    a196b0c View commit details
  2. Merge pull request #109943 from r-ryantm/auto-update/diffstat

    diffstat: 1.63 -> 1.64
    ryantm authored Jan 19, 2021
    Copy the full SHA
    db942b9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/text/diffstat/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/text/diffstat/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ fetchurl, lib, stdenv }:

stdenv.mkDerivation rec {
name = "diffstat-1.63";
name = "diffstat-1.64";

src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/diffstat/${name}.tgz"
"https://invisible-mirror.net/archives/diffstat/${name}.tgz"
];
sha256 = "0vyw200s5dv1257pmrh6c6fdkmw3slyz5szpqfx916xr04sdbpby";
sha256 = "sha256-uK7jjZ0uHQWSbmtVgQqdLC3UB/JNaiZzh1Y6RDbj9/w=";
};

meta = with lib; {