Update fdupes to version 1.50-RC2

svn path=/nixpkgs/trunk/; revision=28775
This commit is contained in:
Marco Maggesi 2011-08-23 11:52:38 +00:00
parent 058055fd16
commit 42469337d7

View File

@ -1,16 +1,18 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "fdupes-1.40"; name = "fdupes-1.50-PR2";
src = fetchurl { src = fetchurl {
url = http://premium.caribe.net/~adrian2/programs/fdupes-1.40.tar.gz; url = http://fdupes.googlecode.com/files/fdupes-1.50-PR2.tar.gz;
sha256 = "1ryxpckgrmqa4y7nx9a9xpg4z1r00k11kc1cm7lqv87l9g293vg1"; sha256 = "068nxcn3xilaphq53sywli9ndydy4gijfi2mz7h45kpy0q9cgwjs";
}; };
installPhase = '' # workaround: otherwise make install fails (should be fixed in trunk)
mkdir -p $out/{bin,man/man1} preInstall = "ensureDir $out/bin $out/man/man1";
make INSTALLDIR=$out/bin MANPAGEDIR=$out/man install
''; makeFlags = "PREFIX=\${out}";
preBuild = "type -p make";
meta = { meta = {
description = "identifies duplicate files residing within specified directories."; description = "identifies duplicate files residing within specified directories.";
@ -18,7 +20,11 @@ stdenv.mkDerivation {
FDUPES uses md5sums and then a byte by byte comparison to finde duplicate FDUPES uses md5sums and then a byte by byte comparison to finde duplicate
files within a set of directories. files within a set of directories.
''; '';
homepage = http://premium.caribe.net/~adrian2/fdupes.html; homepage = http://code.google.com/p/fdupes/;
license = "MIT"; license = "MIT";
platforms = stdenv.lib.platforms.all;
maintainers = [
stdenv.lib.maintainers.z77z
];
}; };
} }