Add recurseForDerivations.

Closes #172
This commit is contained in:
Ben Wolsieffer 2022-07-04 21:01:47 -04:00
parent dc13dec855
commit bb7b9e3723
2 changed files with 2 additions and 0 deletions

View file

@ -2,6 +2,7 @@
self: super: {
rosPackages = rec {
recurseForDerivations = true;
lib = super.lib // import ../lib { inherit lib self; };
melodic = import ./distro-overlay.nix {

View file

@ -12,6 +12,7 @@ let
}));
base = rosSelf: rosSuper: {
recurseForDerivations = true;
lib = super.lib // import ../lib { inherit self rosSelf; };
callPackage = self.newScope rosSelf;