mirror of
https://github.com/urbit/shrub.git
synced 2024-11-30 22:15:47 +03:00
36 lines
834 B
Nix
36 lines
834 B
Nix
final: prev:
|
|
|
|
let
|
|
|
|
optionalList = xs: if xs == null then [ ] else xs;
|
|
|
|
in {
|
|
h2o = prev.h2o.overrideAttrs (_attrs: {
|
|
version = final.sources.h2o.rev;
|
|
src = final.sources.h2o;
|
|
outputs = [ "out" "dev" "lib" ];
|
|
});
|
|
|
|
libsigsegv = prev.libsigsegv.overrideAttrs (attrs: {
|
|
patches = optionalList attrs.patches ++ [
|
|
../pkgs/libsigsegv/disable-stackvma_fault-linux-arm.patch
|
|
../pkgs/libsigsegv/disable-stackvma_fault-linux-i386.patch
|
|
];
|
|
});
|
|
|
|
curlMinimal = prev.curl.override {
|
|
http2Support = false;
|
|
scpSupport = false;
|
|
gssSupport = false;
|
|
ldapSupport = false;
|
|
brotliSupport = false;
|
|
};
|
|
|
|
lmdb = prev.lmdb.overrideAttrs (attrs: {
|
|
patches =
|
|
optionalList attrs.patches ++ prev.lib.optional prev.stdenv.isDarwin [
|
|
../pkgs/lmdb/darwin-fsync.patch
|
|
];
|
|
});
|
|
}
|