pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / misc / code-minimap / default.nix
blob2bc64b425e5ff788a158fffc1d8aee0c4a265513
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 , libiconv
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "code-minimap";
10   version = "0.6.7";
12   src = fetchFromGitHub {
13     owner = "wfxr";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-d9qcSSiRv1I7NYuLrra5ShIUXT2HVeHGD0WPb+dnQCc=";
17   };
19   cargoHash = "sha256-5/UgEzkJw9XDgtS1jKyWh5ijTp3L+UQLuE5CXcyIgTs=";
21   buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
23   meta = with lib; {
24     description = "High performance code minimap render";
25     homepage = "https://github.com/wfxr/code-minimap";
26     license = with licenses; [ asl20 /* or */ mit ];
27     maintainers = with maintainers; [ bsima ];
28     mainProgram = "code-minimap";
29   };