added fdupes-1.40 (utility to find duplicate files) provided by Marco Maggesi

svn path=/nixpkgs/trunk/; revision=13134
This commit is contained in:
Marc Weber 2008-10-28 11:56:43 +00:00
parent 79bcd85e81
commit 489620f05c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "fdupes-1.40";
src = fetchurl {
url = http://premium.caribe.net/~adrian2/programs/fdupes-1.40.tar.gz;
sha256 = "1ryxpckgrmqa4y7nx9a9xpg4z1r00k11kc1cm7lqv87l9g293vg1";
};
installPhase = ''
mkdir -p $out/{bin,man/man1}
make INSTALLDIR=$out/bin MANPAGEDIR=$out/man install
'';
meta = {
description = "identifies duplicate files residing within specified directories.";
longDescription = ''
FDUPES uses md5sums and then a byte by byte comparison to finde duplicate
files within a set of directories.
'';
homepage = http://premium.caribe.net/~adrian2/fdupes.html;
license = "MIT";
};
}

View File

@ -7109,6 +7109,10 @@ let
inherit (gtkLibs) gtk;
};
fdupes = import ../tools/misc/fdupes {
inherit fetchurl stdenv;
};
feh = import ../applications/graphics/feh {
inherit fetchurl stdenv x11 imlib2 libjpeg libpng;
};