python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / by-name / ma / manix / package.nix
blobc3ea02a3e5b29cebc021494ddf0fb81a9efd3a96
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "manix";
9   version = "0.8.0";
11   src = fetchFromGitHub {
12     owner = "nix-community";
13     repo = "manix";
14     rev = "v${version}";
15     hash = "sha256-b/3NvY+puffiQFCQuhRMe81x2wm3vR01MR3iwe/gJkw=";
16   };
18   cargoHash = "sha256-45cb0yO/ypGLcvEgPOkN6Py99yqK09xnCmMOLOOYYSA=";
20   meta = with lib; {
21     description = "Fast CLI documentation searcher for Nix";
22     homepage = "https://github.com/nix-community/manix";
23     license = licenses.mpl20;
24     maintainers = with maintainers; [
25       iogamaster
26       lecoqjacob
27     ];
28     mainProgram = "manix";
29   };