1
0
Fork 0
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:
Eelco Dolstra 2016-04-21 16:02:48 +02:00
parent 1a71495273
commit d155d80155
4 changed files with 261 additions and 2 deletions

View file

@ -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 = ''