nixpkgs/pkgs/tools/misc/fdupes/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
900 B
Nix
Raw Normal View History

2021-12-21 19:10:37 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, pcre2 }:
stdenv.mkDerivation rec {
pname = "fdupes";
2022-09-09 18:15:14 +00:00
version = "2.2.1";
src = fetchFromGitHub {
2017-11-12 22:53:25 +00:00
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
2022-09-09 18:15:14 +00:00
hash = "sha256-8GYQfnUxS790pDXw2sjnDZNB55PMDaCcO6daIa/MPMw=";
};
2021-12-21 19:10:37 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2020-07-06 07:05:01 +00:00
buildInputs = [ ncurses pcre2 ];
meta = with lib; {
description = "Identifies duplicate files residing within specified directories";
longDescription = ''
2017-11-12 22:53:25 +00:00
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";
2017-11-12 22:53:25 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.maggesi ];
};
}