Applying the patch adding 'detox' from Tom Ridge and Karn Kallio.

svn path=/nixpkgs/trunk/; revision=23655
This commit is contained in:
Lluís Batlle i Rossell 2010-09-06 07:21:08 +00:00
parent f01245ee4a
commit 7e27052bd6
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{stdenv, fetchurl, flex}:
stdenv.mkDerivation {
name = "detox-1.2.0";
src = fetchurl {
url = mirror://sourceforge/detox/1.2.0/detox-1.2.0.tar.gz;
sha256 = "02cfkf3yhw64xg8mksln8w24gdwgm2x9g3vps7gn6jbjbfd8mh45";
};
buildInputs = [flex];
meta = {
description = "Detox is a utility designed to clean up filenames.";
longDescription = ''
Detox is a utility designed to clean up filenames. It replaces
difficult to work with characters, such as spaces, with standard
equivalents. It will also clean up filenames with UTF-8 or Latin-1
(or CP-1252) characters in them.
'';
homepage = "http://detox.sourceforge.net/";
license = "bsd";
};
}

View File

@ -517,6 +517,8 @@ let
debootstrap = callPackage ../tools/misc/debootstrap { };
detox = callPackage ../tools/misc/detox { };
ddclient = callPackage ../tools/networking/ddclient { };
ddrescue = callPackage ../tools/system/ddrescue { };