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

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";
2021-12-21 19:10:37 +00:00
version = "2.1.2";
src = fetchFromGitHub {
2017-11-12 22:53:25 +00:00
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
2021-12-21 19:10:37 +00:00
hash = "sha256-WtSuFWRqQo5D/FLwl3AaIIfg6q+09A3aP5//J4AUzus=";
};
2021-12-21 19:10:37 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2020-07-06 08:05:01 +01: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 ];
};
}