2008-10-28 04:56:43 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-04-08 08:11:17 -07:00
|
|
|
name = "fdupes-1.51";
|
2008-10-28 04:56:43 -07:00
|
|
|
src = fetchurl {
|
2015-04-08 08:11:17 -07:00
|
|
|
url = https://github.com/adrianlopezroche/fdupes/archive/fdupes-1.51.tar.gz;
|
|
|
|
sha256 = "11j96vxl9vg3jsnxqxskrv3gad6dh7hz2zpyc8n31xzyxka1c7kn";
|
2008-10-28 04:56:43 -07:00
|
|
|
};
|
|
|
|
|
2011-08-23 04:52:38 -07:00
|
|
|
# workaround: otherwise make install fails (should be fixed in trunk)
|
2012-01-18 12:16:00 -08:00
|
|
|
preInstall = "mkdir -p $out/bin $out/man/man1";
|
2011-08-23 04:52:38 -07:00
|
|
|
|
|
|
|
makeFlags = "PREFIX=\${out}";
|
|
|
|
|
2008-10-28 04:56:43 -07:00
|
|
|
meta = {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Identifies duplicate files residing within specified directories";
|
2008-10-28 04:56:43 -07:00
|
|
|
longDescription = ''
|
|
|
|
FDUPES uses md5sums and then a byte by byte comparison to finde duplicate
|
|
|
|
files within a set of directories.
|
|
|
|
'';
|
2011-08-23 04:52:38 -07:00
|
|
|
homepage = http://code.google.com/p/fdupes/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2011-08-23 04:52:38 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
2008-10-28 04:56:43 -07:00
|
|
|
};
|
|
|
|
}
|