nixpkgs/pkgs/tools/misc/fdupes/default.nix
e1mo cfe10a28af 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
2024-04-24 19:40:55 +02:00

46 lines
970 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, ncurses
, pcre2
, sqlite
}:
stdenv.mkDerivation rec {
pname = "fdupes";
version = "2.3.0";
src = fetchFromGitHub {
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
hash = "sha256-BW6a5vKRAuXs/zWPHhtZs6Y4scyCEfqHEAkGUSUiwkI=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
ncurses
pcre2
sqlite
];
meta = with lib; {
description = "Identifies duplicate files residing within specified directories";
longDescription = ''
fdupes searches the given path for duplicate files.
Such files are found by comparing file sizes and MD5 signatures,
followed by a byte-by-byte comparison.
'';
homepage = "https://github.com/adrianlopezroche/fdupes";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.maggesi ];
mainProgram = "fdupes";
};
}