mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
Add missing deps to the dev shell
This commit is contained in:
parent
1af94bf471
commit
ba34ea9fe7
3 changed files with 12 additions and 1 deletions
|
@ -88,9 +88,12 @@ in {
|
||||||
buildInputs = attrs.buildInputs or []
|
buildInputs = attrs.buildInputs or []
|
||||||
++ pkgs.nixComponents.nix-util.buildInputs
|
++ pkgs.nixComponents.nix-util.buildInputs
|
||||||
++ pkgs.nixComponents.nix-store.buildInputs
|
++ pkgs.nixComponents.nix-store.buildInputs
|
||||||
|
++ pkgs.nixComponents.nix-store-tests.externalBuildInputs
|
||||||
++ pkgs.nixComponents.nix-fetchers.buildInputs
|
++ pkgs.nixComponents.nix-fetchers.buildInputs
|
||||||
++ pkgs.nixComponents.nix-expr.buildInputs
|
++ pkgs.nixComponents.nix-expr.buildInputs
|
||||||
++ pkgs.nixComponents.nix-store-tests.externalBuildInputs
|
++ pkgs.nixComponents.nix-expr.externalPropagatedBuildInputs
|
||||||
|
++ pkgs.nixComponents.nix-cmd.buildInputs
|
||||||
|
++ lib.optionals havePerl pkgs.nixComponents.nix-perl-bindings.externalBuildInputs
|
||||||
++ lib.optional havePerl pkgs.perl
|
++ lib.optional havePerl pkgs.perl
|
||||||
;
|
;
|
||||||
})
|
})
|
||||||
|
|
|
@ -71,6 +71,10 @@ mkMesonLibrary (finalAttrs: {
|
||||||
nix-util
|
nix-util
|
||||||
nix-store
|
nix-store
|
||||||
nix-fetchers
|
nix-fetchers
|
||||||
|
] ++ finalAttrs.passthru.externalPropagatedBuildInputs;
|
||||||
|
|
||||||
|
# Hack for sake of the dev shell
|
||||||
|
passthru.externalPropagatedBuildInputs = [
|
||||||
boost
|
boost
|
||||||
nlohmann_json
|
nlohmann_json
|
||||||
] ++ lib.optional enableGC boehmgc;
|
] ++ lib.optional enableGC boehmgc;
|
||||||
|
|
|
@ -40,6 +40,10 @@ perl.pkgs.toPerlModule (mkMesonDerivation (finalAttrs: {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
nix-store
|
nix-store
|
||||||
|
] ++ finalAttrs.passthru.externalBuildInputs;
|
||||||
|
|
||||||
|
# Hack for sake of the dev shell
|
||||||
|
passthru.externalBuildInputs = [
|
||||||
bzip2
|
bzip2
|
||||||
libsodium
|
libsodium
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue