mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-12 15:01:38 +03:00
29 lines
644 B
Nix
29 lines
644 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;
|
|
};
|
|
}
|