summary refs log tree commit diff
path: root/pkgs/tools/misc/detox/default.nix
blob: 9ad891fd9bd83332be4c5555bc2c7c8d58cbc2a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{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];

  hardeningDisable = [ "format" ];

  postInstall = ''
    install -m644 safe.tbl $out/share/detox/
  '';

  meta = with stdenv.lib; {
    homepage = http://detox.sourceforge.net/;
    description = "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.
    '';
    license = licenses.bsd3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ ];
  };
}