fdupes: 2.2.1 -> 2.3.0

> Changes from 2.2.1 to 2.3.0:
 >
 > - Add --cache option to speed up file comparisons.
 > - Use nanosecond precision for file times, if available.
 > - Fix compilation issue on OpenBSD.
 > - Other changes like fixing typos, wording, etc.

Changelog: https://github.com/adrianlopezroche/fdupes/releases/tag/v2.3.0
This commit is contained in:
e1mo 2024-04-22 12:09:36 +02:00 committed by Bjørn Forsman
parent 15639ed016
commit cfe10a28af
1 changed files with 22 additions and 7 deletions

View File

@ -1,18 +1,33 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, pcre2 }:
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, ncurses
, pcre2
, sqlite
}:
stdenv.mkDerivation rec {
pname = "fdupes";
version = "2.2.1";
version = "2.3.0";
src = fetchFromGitHub {
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
hash = "sha256-8GYQfnUxS790pDXw2sjnDZNB55PMDaCcO6daIa/MPMw=";
repo = "fdupes";
rev = "v${version}";
hash = "sha256-BW6a5vKRAuXs/zWPHhtZs6Y4scyCEfqHEAkGUSUiwkI=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ ncurses pcre2 ];
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
ncurses
pcre2
sqlite
];
meta = with lib; {
description = "Identifies duplicate files residing within specified directories";