Remove melodic with Python 2.

Key Python 2 dependencies have been removed from nixpkgs, so basically nothing
builds anymore. The melodicPython3 package set is still available.
This commit is contained in:
Ben Wolsieffer 2022-10-19 13:59:02 -04:00
parent ec099ecde1
commit 49aa01b0aa
2 changed files with 0 additions and 6 deletions

View file

@ -7,7 +7,6 @@ jobs:
strategy:
matrix:
distro:
- melodic
- melodicPython3
- noetic
- foxy

View file

@ -5,11 +5,6 @@ self: super: {
recurseForDerivations = true;
lib = super.lib // import ../lib { inherit lib self; };
melodic = import ./distro-overlay.nix {
distro = "melodic";
python = self.python2;
} self super;
melodicPython3 = import ./distro-overlay.nix {
distro = "melodic";
python = self.python3;