1 { lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses, pcre2 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "adrianlopezroche";
11 sha256 = "1c5hv7vkfxsii1qafhsynzp9zkwim47xkpk27sy64qdsjnhysdak";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ ncurses pcre2 ];
18 description = "Identifies duplicate files residing within specified directories";
20 fdupes searches the given path for duplicate files.
21 Such files are found by comparing file sizes and MD5 signatures,
22 followed by a byte-by-byte comparison.
24 homepage = "https://github.com/adrianlopezroche/fdupes";
25 license = licenses.mit;
26 platforms = platforms.all;
27 maintainers = [ maintainers.maggesi ];