mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
Move dependency patches from top level into subdir
Good to not clutter the top-level directory.
This commit is contained in:
parent
2cb9c7c681
commit
1de8eed28a
4 changed files with 2 additions and 3 deletions
|
@ -163,10 +163,10 @@
|
||||||
enableLargeConfig = true;
|
enableLargeConfig = true;
|
||||||
}).overrideAttrs(o: {
|
}).overrideAttrs(o: {
|
||||||
patches = (o.patches or []) ++ [
|
patches = (o.patches or []) ++ [
|
||||||
./boehmgc-coroutine-sp-fallback.diff
|
./dep-patches/boehmgc-coroutine-sp-fallback.diff
|
||||||
|
|
||||||
# https://github.com/ivmai/bdwgc/pull/586
|
# https://github.com/ivmai/bdwgc/pull/586
|
||||||
./boehmgc-traceable_allocator-public.diff
|
./dep-patches/boehmgc-traceable_allocator-public.diff
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,6 @@ in {
|
||||||
./mk
|
./mk
|
||||||
(fileset.fileFilter (f: lib.strings.hasPrefix "nix-profile" f.name) ./scripts)
|
(fileset.fileFilter (f: lib.strings.hasPrefix "nix-profile" f.name) ./scripts)
|
||||||
] ++ lib.optionals doBuild [
|
] ++ lib.optionals doBuild [
|
||||||
./boehmgc-coroutine-sp-fallback.diff
|
|
||||||
./doc
|
./doc
|
||||||
./misc
|
./misc
|
||||||
./precompiled-headers.h
|
./precompiled-headers.h
|
||||||
|
|
Loading…
Reference in a new issue