biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / backup / awsbck / default.nix
blob756d7aa1261fbd4e8a40f2808eb717f73e0377d1
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , Security
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "awsbck";
10   version = "0.3.9";
12   src = fetchFromGitHub {
13     owner = "beeb";
14     repo = "awsbck";
15     rev = "v${version}";
16     hash = "sha256-KHbAmx2CsRqatGt5zTvqZSq8fwcClRZkeMHucLAr8bY=";
17   };
19   cargoHash = "sha256-dMXaIFc0e6PMYiQrokQoUc1xAVCccE92WzM2fl7tOBQ=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
23   # tests run in CI on the source repo
24   doCheck = false;
26   meta = with lib; {
27     description = "Backup a folder to AWS S3, once or periodically";
28     homepage = "https://github.com/beeb/awsbck";
29     license = with licenses; [ mit asl20 ];
30     maintainers = with maintainers; [ beeb ];
31     mainProgram = "awsbck";
32   };