1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/misc/fdupes/default.nix

30 lines
881 B
Nix
Raw Normal View History

2020-07-06 08:05:01 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses, pcre2 }:
stdenv.mkDerivation rec {
pname = "fdupes";
2020-07-06 08:05:01 +01: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 08:05:01 +01:00
sha256 = "1c5hv7vkfxsii1qafhsynzp9zkwim47xkpk27sy64qdsjnhysdak";
};
2020-07-06 08:05:01 +01:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ncurses pcre2 ];
2017-11-12 22:53:25 +00:00
meta = with stdenv.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 ];
};
}