packages/build-support/drv-parts: add custom dependency sets support
This commit is contained in:
parent
51647bb7f6
commit
59087aab60
2 changed files with 9 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./backends
|
./backends
|
||||||
|
./dependency-sets
|
||||||
];
|
];
|
||||||
_module.args = {
|
_module.args = {
|
||||||
drv-backends = inputs.drv-parts.drv-backends // config.drv-backends;
|
drv-backends = inputs.drv-parts.drv-backends // config.drv-backends;
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, inputs', self', ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
dependencySets = {
|
||||||
|
inherit pkgs inputs' self';
|
||||||
|
inherit (pkgs) python3Packages;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue