2010-09-06 08:21:08 +01:00
|
|
|
{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 = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Utility designed to clean up filenames";
|
2010-09-06 08:21:08 +01:00
|
|
|
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/";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2010-09-06 08:21:08 +01:00
|
|
|
};
|
|
|
|
}
|