base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / networking / s3rs / default.nix
blobad343c00ca600d41b878fd7d8dd8caf5997d3add
1 { lib, stdenv, rustPlatform, python3, perl, openssl, Security, fetchFromGitHub, pkg-config }:
3 rustPlatform.buildRustPackage rec {
4   pname = "s3rs";
5   version = "0.4.19";
7   src = fetchFromGitHub {
8     owner = "yanganto";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-mJ1bMfv/HY74TknpRvu8RIs1d2VlNreEVtHCtQSHQw8=";
12   };
14   cargoHash = "sha256-Q1EqEyNxWIx3wD8zuU7/MO3Qz6zsfBZbtT/IIUmJccE=";
16   nativeBuildInputs = [ python3 perl pkg-config ];
17   buildInputs = [ openssl ]
18     ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
20   meta = with lib; {
21     description = "S3 cli client with multi configs with diffent provider";
22     homepage = "https://github.com/yanganto/s3rs";
23     license = licenses.mit;
24     maintainers = with maintainers; [ yanganto ];
25     mainProgram = "s3rs";
26   };