pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / text / nerdfix / default.nix
blobf280c891643fd266b0db2ef0e73d0add9a6e3468
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "nerdfix";
8   version = "0.4.1";
10   src = fetchFromGitHub {
11     owner = "loichyan";
12     repo = "nerdfix";
13     rev = "v${version}";
14     hash = "sha256-5pUFj3K4yH/M8F+ZpCHFO3gEfxQ4pwxRa6uJbejrQxQ=";
15   };
17   cargoHash = "sha256-6S6NyX2hmkekgpuLaBjBxoybnqJpJXtqelJ+6YzxA0I=";
19   meta = with lib; {
20     description = "Nerdfix helps you to find/fix obsolete nerd font icons in your project";
21     mainProgram = "nerdfix";
22     homepage = "https://github.com/loichyan/nerdfix";
23     changelog = "https://github.com/loichyan/nerdfix/blob/${src.rev}/CHANGELOG.md";
24     license = with licenses; [ asl20 mit ];
25     maintainers = with maintainers; [ figsoda ];
26   };