nixpkgs/pkgs/tools/misc/fdupes/default.nix
Marco Maggesi ff1ed720e2 Rename z77z into maggesi
Make the "handle" of the maintainer match the name of the github account.
Also update the email address.
2019-10-07 17:05:25 +02:00

29 lines
801 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fdupes";
version = "1.6.1";
src = fetchFromGitHub {
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
sha256 = "19b6vqblddaw8ccw4sn0qsqzbswlhrz8ia6n4m3hymvcxn8skpz9";
};
makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
description = "Identifies duplicate files residing within specified directories";
longDescription = ''
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;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.maggesi ];
};
}