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

29 lines
808 B
Nix
Raw Normal View History

2017-11-12 22:53:25 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
2017-11-12 22:53:25 +00:00
name = "fdupes-${version}";
version = "1.6.1";
src = fetchFromGitHub {
2017-11-12 22:53:25 +00:00
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
sha256 = "19b6vqblddaw8ccw4sn0qsqzbswlhrz8ia6n4m3hymvcxn8skpz9";
};
2017-11-12 22:53:25 +00:00
makeFlags = "PREFIX=$(out)";
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.
'';
2017-11-12 22:53:25 +00:00
homepage = https://github.com/adrianlopezroche/fdupes;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.z77z ];
};
}