nixpkgs/pkgs/tools/misc/detox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1008 B
Nix
Raw Normal View History

2023-11-10 20:43:54 +00:00
{ lib, stdenv, fetchFromGitHub, flex, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "detox";
2023-11-10 20:43:54 +00:00
version = "1.4.5";
2023-11-10 20:43:54 +00:00
src = fetchFromGitHub {
owner = "dharple";
repo = pname;
rev = "v${version}";
hash = "sha256-cTuK5EIimRVZ1nfuTa1ds6xrawYIAbwNNIkNONd9y4Q=";
};
2023-11-10 20:43:54 +00:00
nativeBuildInputs = [ flex autoreconfHook ];
hardeningDisable = [ "format" ];
2016-02-10 23:18:42 +00:00
meta = with lib; {
2023-11-10 20:43:54 +00:00
homepage = "https://github.com/dharple/detox";
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";
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;
maintainers = with maintainers; [ ];
2023-11-10 20:43:54 +00:00
mainProgram = "detox";
};
}