2023-11-10 20:43:54 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, flex, autoreconfHook }:
|
2010-09-06 07:21:08 +00:00
|
|
|
|
2021-08-02 09:38:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "detox";
|
2023-11-10 20:43:54 +00:00
|
|
|
version = "1.4.5";
|
2010-09-06 07:21:08 +00:00
|
|
|
|
2023-11-10 20:43:54 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dharple";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-cTuK5EIimRVZ1nfuTa1ds6xrawYIAbwNNIkNONd9y4Q=";
|
2010-09-06 07:21:08 +00:00
|
|
|
};
|
|
|
|
|
2023-11-10 20:43:54 +00:00
|
|
|
nativeBuildInputs = [ flex autoreconfHook ];
|
2010-09-06 07:21:08 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 23:18:42 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2023-11-10 20:43:54 +00:00
|
|
|
homepage = "https://github.com/dharple/detox";
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Utility designed to clean up filenames";
|
2023-11-10 20:43:54 +00:00
|
|
|
changelog = "https://github.com/dharple/detox/blob/v${version}/CHANGELOG.md";
|
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; [ ];
|
2023-11-10 20:43:54 +00:00
|
|
|
mainProgram = "detox";
|
2010-09-06 07:21:08 +00:00
|
|
|
};
|
|
|
|
}
|