biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / chars / default.nix
blobca2ad027c2cf69ceffc16e3160c9103548a524ab
1 { lib, stdenv
2 , fetchFromGitHub
3 , rustPlatform
4 , Security
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "chars";
9   version = "0.7.0";
11   src = fetchFromGitHub {
12     owner = "antifuchs";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-mBtwdPzIc6RgEFTyReStFlhS4UhhRWjBTKT6gD3tzpQ=";
16   };
18   cargoHash = "sha256-wqyExG4haco6jg1zpbouz3xMR7sjiVIAC16PnDU2tc8=";
20   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
22   meta = with lib; {
23     description = "Commandline tool to display information about unicode characters";
24     mainProgram = "chars";
25     homepage = "https://github.com/antifuchs/chars";
26     license = licenses.mit;
27     maintainers = with maintainers; [ bbigras ];
28   };