2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, flex}:
|
2010-09-06 08:21:08 +01:00
|
|
|
|
2021-08-02 10:38:45 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "detox";
|
|
|
|
version = "1.2.0";
|
2010-09-06 08:21:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-02 10:38:45 +01:00
|
|
|
url = "mirror://sourceforge/detox/${version}/detox-${version}.tar.gz";
|
2010-09-06 08:21:08 +01: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 11:34:59 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -m644 safe.tbl $out/share/detox/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://detox.sourceforge.net/";
|
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.
|
|
|
|
'';
|
2015-06-22 07:25:07 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2010-09-06 08:21:08 +01:00
|
|
|
};
|
|
|
|
}
|