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

authored by e1mo and committed by Bjørn Forsman cfe10a28 15639ed0

+22 -7
+22 -7
pkgs/tools/misc/fdupes/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, pcre2 }: 2 3 stdenv.mkDerivation rec { 4 pname = "fdupes"; 5 - version = "2.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "adrianlopezroche"; 9 - repo = "fdupes"; 10 - rev = "v${version}"; 11 - hash = "sha256-8GYQfnUxS790pDXw2sjnDZNB55PMDaCcO6daIa/MPMw="; 12 }; 13 14 - nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 - buildInputs = [ ncurses pcre2 ]; 16 17 meta = with lib; { 18 description = "Identifies duplicate files residing within specified directories";
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , pkg-config 6 + , ncurses 7 + , pcre2 8 + , sqlite 9 + }: 10 11 stdenv.mkDerivation rec { 12 pname = "fdupes"; 13 + version = "2.3.0"; 14 15 src = fetchFromGitHub { 16 owner = "adrianlopezroche"; 17 + repo = "fdupes"; 18 + rev = "v${version}"; 19 + hash = "sha256-BW6a5vKRAuXs/zWPHhtZs6Y4scyCEfqHEAkGUSUiwkI="; 20 }; 21 22 + nativeBuildInputs = [ 23 + autoreconfHook 24 + pkg-config 25 + ]; 26 + buildInputs = [ 27 + ncurses 28 + pcre2 29 + sqlite 30 + ]; 31 32 meta = with lib; { 33 description = "Identifies duplicate files residing within specified directories";