2010-09-06 07:21:08 +00:00
|
|
|
{stdenv, fetchurl, flex}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "detox-1.2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "mirror://sourceforge/detox/1.2.0/detox-1.2.0.tar.gz";
|
2010-09-06 07:21:08 +00:00
|
|
|
sha256 = "02cfkf3yhw64xg8mksln8w24gdwgm2x9g3vps7gn6jbjbfd8mh45";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [flex];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 23:18:42 +00:00
|
|
|
|
2018-06-08 10:34:59 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -m644 safe.tbl $out/share/detox/
|
|
|
|
'';
|
|
|
|
|
2015-06-22 06:25:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://detox.sourceforge.net/";
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Utility designed to clean up filenames";
|
2010-09-06 07:21:08 +00: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.
|
|
|
|
'';
|
2015-06-22 06:25:07 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2010-09-06 07:21:08 +00:00
|
|
|
};
|
|
|
|
}
|