Skip to content

Commit

Permalink
diffstat: 1.66 -> 1.67
Browse files Browse the repository at this point in the history
  • Loading branch information
trofi committed Nov 26, 2024
1 parent 504e3ec commit 7b5a392
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/by-name/di/diffstat/package.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{ fetchurl, lib, stdenv }:
{ fetchurl, lib, stdenv, zstd }:

stdenv.mkDerivation rec {
pname = "diffstat";
version = "1.66";
version = "1.67";

src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/diffstat/diffstat-${version}.tgz"
"https://invisible-mirror.net/archives/diffstat/diffstat-${version}.tgz"
];
sha256 = "sha256-9UUxu+Mujg+kYfAYtB469Ra2MggBcvNh8F5QNn7Ltp4=";
hash = "sha256-dg7QyZxtZDI41BuA5gJ4zxaD/7lKKDlUrH7xaMhSdmo=";
};

buildInputs = [ zstd ];

meta = with lib; {
description = "Read output of diff and display a histogram of the changes";
mainProgram = "diffstat";
Expand Down

0 comments on commit 7b5a392

Please sign in to comment.