083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
29 lines
821 B
Nix
29 lines
821 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "fdupes-1.50-PR2";
|
|
src = fetchurl {
|
|
url = http://fdupes.googlecode.com/files/fdupes-1.50-PR2.tar.gz;
|
|
sha256 = "068nxcn3xilaphq53sywli9ndydy4gijfi2mz7h45kpy0q9cgwjs";
|
|
};
|
|
|
|
# workaround: otherwise make install fails (should be fixed in trunk)
|
|
preInstall = "mkdir -p $out/bin $out/man/man1";
|
|
|
|
makeFlags = "PREFIX=\${out}";
|
|
|
|
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://code.google.com/p/fdupes/;
|
|
license = "MIT";
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [
|
|
stdenv.lib.maintainers.z77z
|
|
];
|
|
};
|
|
}
|