mirror of
https://github.com/NixOS/nix
synced 2025-07-08 02:43:54 +02:00
Move S3BinaryCacheStore from Hydra
This allows running arbitrary Nix commands against an S3 binary cache. To do: make this a compile time option to prevent a dependency on aws-sdk-cpp.
This commit is contained in:
parent
1a71495273
commit
d155d80155
4 changed files with 261 additions and 2 deletions
|
@ -71,7 +71,14 @@ let
|
|||
src = tarball;
|
||||
|
||||
buildInputs =
|
||||
[ curl perl bzip2 xz openssl pkgconfig sqlite boehmgc ]
|
||||
[ curl perl bzip2 xz openssl pkgconfig sqlite boehmgc
|
||||
|
||||
(aws-sdk-cpp.override {
|
||||
apis = ["s3"];
|
||||
customMemoryManagement = false;
|
||||
})
|
||||
|
||||
]
|
||||
++ lib.optional stdenv.isLinux libsodium;
|
||||
|
||||
configureFlags = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue