python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / at / atac / package.nix
blob2ed394ee20aefcde7b4ffedc1131600b8747cee5
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5   pkg-config,
6   oniguruma,
7 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "atac";
10   version = "0.18.0";
12   src = fetchFromGitHub {
13     owner = "Julien-cpsn";
14     repo = "ATAC";
15     rev = "v${version}";
16     hash = "sha256-FSZGpV+dREwjst84TT1aBm/H+VqkjI8XDPo3usJ7UeI=";
17   };
19   cargoHash = "sha256-sNgtqvFiwHSYMDf0379i8Yl9NrkCRVLo/ogjbHFgKBY=";
21   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [ oniguruma ];
25   env = {
26     RUSTONIG_SYSTEM_LIBONIG = true;
27   };
29   meta = with lib; {
30     description = "Simple API client (postman like) in your terminal";
31     homepage = "https://github.com/Julien-cpsn/ATAC";
32     license = licenses.mit;
33     maintainers = with maintainers; [ vinnymeller ];
34     mainProgram = "atac";
35   };