Removing 22.05 release

Because of some incompabilities with the 22.11 release.
This commit is contained in:
Antoine Eiche 2022-11-30 20:55:24 +01:00
parent 694e7d34f6
commit 033b3d2a45

View file

@ -4,14 +4,13 @@
inputs = { inputs = {
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
nixpkgs.url = "flake:nixpkgs/nixos-unstable"; nixpkgs.url = "flake:nixpkgs/nixos-unstable";
nixpkgs-22_05.url = "flake:nixpkgs/nixos-22.05";
blobs = { blobs = {
url = "gitlab:simple-nixos-mailserver/blobs"; url = "gitlab:simple-nixos-mailserver/blobs";
flake = false; flake = false;
}; };
}; };
outputs = { self, utils, blobs, nixpkgs, nixpkgs-22_05 }: let outputs = { self, utils, blobs, nixpkgs }: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
releases = [ releases = [
@ -19,10 +18,6 @@
name = "unstable"; name = "unstable";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
} }
{
name = "22.05";
pkgs = nixpkgs-22_05.legacyPackages.${system};
}
]; ];
testNames = [ testNames = [
"internal" "internal"