mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
Drop external*Inputs from packages
Get rid of some manual package set resolution in favor of splicing again, too. Co-authored-by: John Ericson <John.Ericson@Obsidian.Systems>
This commit is contained in:
parent
1fa235b77c
commit
cb5b0c30aa
7 changed files with 41 additions and 64 deletions
|
|
@ -42,20 +42,16 @@ mkMesonExecutable (finalAttrs: {
|
|||
(fileset.fileFilter (file: file.hasExt "hh") ./.)
|
||||
];
|
||||
|
||||
# Hack for sake of the dev shell
|
||||
passthru.externalBuildInputs = [
|
||||
buildInputs = [
|
||||
sqlite
|
||||
rapidcheck
|
||||
gtest
|
||||
]
|
||||
++ lib.optionals withBenchmarks [
|
||||
gbenchmark
|
||||
];
|
||||
|
||||
buildInputs = finalAttrs.passthru.externalBuildInputs ++ [
|
||||
nix-store
|
||||
nix-store-c
|
||||
nix-store-test-support
|
||||
]
|
||||
++ lib.optionals withBenchmarks [
|
||||
gbenchmark
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue