forked from lix-project/hydra
Use patched aws-sdk-cpp
This commit is contained in:
parent
a727643286
commit
e624652dd8
11
release.nix
11
release.nix
|
@ -120,10 +120,17 @@ rec {
|
||||||
guile # optional, for Guile + Guix support
|
guile # optional, for Guile + Guix support
|
||||||
perlDeps perl
|
perlDeps perl
|
||||||
postgresql92 # for running the tests
|
postgresql92 # for running the tests
|
||||||
(aws-sdk-cpp.override {
|
(lib.overrideDerivation (aws-sdk-cpp.override {
|
||||||
apis = ["s3"];
|
apis = ["s3"];
|
||||||
customMemoryManagement = false;
|
customMemoryManagement = false;
|
||||||
})
|
}) (attrs: {
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "edolstra";
|
||||||
|
repo = "aws-sdk-cpp";
|
||||||
|
rev = "local";
|
||||||
|
sha256 = "1vhgsxkhpai9a7dk38q4r239l6dsz2jvl8hii24c194lsga3g84h";
|
||||||
|
};
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
hydraPath = lib.makeSearchPath "bin" (
|
hydraPath = lib.makeSearchPath "bin" (
|
||||||
|
|
Loading…
Reference in a new issue