biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / slingshot / default.nix
blob1cf9fe854c3d2dda431fe938b02673be0ec6f0a8
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "slingshot";
8   version = "0.3.0";
10   src = fetchFromGitHub {
11     owner = "caio-ishikawa";
12     repo = "slingshot";
13     rev = "v${version}";
14     hash = "sha256-XI6uf54sEJ0htfY43aF8/X1/OF9m6peHUGDS+2nK3xA=";
15   };
17   cargoHash = "sha256-NZyO6oXmgTUszp2Vc9iVAnCvM78/BJ8IfpeTrsOMvlo=";
19   meta = with lib; {
20     description = "Lightweight command line tool to quickly navigate across folders";
21     homepage = "https://github.com/caio-ishikawa/slingshot";
22     changelog = "https://github.com/caio-ishikawa/slingshot/releases/tag/${src.rev}";
23     license = licenses.mit;
24     maintainers = with maintainers; [ figsoda ];
25     mainProgram = "slingshot";
26   };