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

30 lines
879 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses, pcre2 }:
stdenv.mkDerivation rec {
pname = "fdupes";
2020-07-06 07:05:01 +00:00
version = "2.1.1";
src = fetchFromGitHub {
2017-11-12 22:53:25 +00:00
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
2020-07-06 07:05:01 +00:00
sha256 = "1c5hv7vkfxsii1qafhsynzp9zkwim47xkpk27sy64qdsjnhysdak";
};
2020-07-06 07:05:01 +00:00
nativeBuildInputs = [ autoreconfHook ];
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 ];
};
}