Add lunar distro.

This commit is contained in:
Ben Wolsieffer 2019-04-09 22:10:43 -04:00
parent faad28fb36
commit f1bceef6ca
2 changed files with 10 additions and 0 deletions

5
lunar/overrides.nix Normal file
View file

@ -0,0 +1,5 @@
# Top level package set
self:
# Distro package set
rosSelf: rosSuper: {
}

View file

@ -10,6 +10,11 @@ self: super: {
python = self.python3;
} self super;
lunar = import ./mk-distro-overlay.nix {
distro = "lunar";
python = self.python2;
} self super;
melodic = import ./mk-distro-overlay.nix {
distro = "melodic";
python = self.python3;