added fdupes-1.40 (utility to find duplicate files) provided by Marco Maggesi
svn path=/nixpkgs/trunk/; revision=13134
This commit is contained in:
parent
79bcd85e81
commit
489620f05c
24
pkgs/tools/misc/fdupes/default.nix
Normal file
24
pkgs/tools/misc/fdupes/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user