mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
netbox_3_5: remove
This commit is contained in:
parent
163fed297e
commit
5d2370f800
5 changed files with 5 additions and 19 deletions
|
@ -83,7 +83,9 @@ in {
|
||||||
then pkgs.netbox_3_5
|
then pkgs.netbox_3_5
|
||||||
else pkgs.netbox_3_3;
|
else pkgs.netbox_3_3;
|
||||||
defaultText = lib.literalExpression ''
|
defaultText = lib.literalExpression ''
|
||||||
if lib.versionAtLeast config.system.stateVersion "23.11"
|
if lib.versionAtLeast config.system.stateVersion "24.05"
|
||||||
|
then pkgs.netbox_3_7
|
||||||
|
else if lib.versionAtLeast config.system.stateVersion "23.11"
|
||||||
then pkgs.netbox_3_6
|
then pkgs.netbox_3_6
|
||||||
else if lib.versionAtLeast config.system.stateVersion "23.05"
|
else if lib.versionAtLeast config.system.stateVersion "23.05"
|
||||||
then pkgs.netbox_3_5
|
then pkgs.netbox_3_5
|
||||||
|
|
|
@ -572,7 +572,6 @@ in {
|
||||||
netdata = handleTest ./netdata.nix {};
|
netdata = handleTest ./netdata.nix {};
|
||||||
networking.networkd = handleTest ./networking.nix { networkd = true; };
|
networking.networkd = handleTest ./networking.nix { networkd = true; };
|
||||||
networking.scripted = handleTest ./networking.nix { networkd = false; };
|
networking.scripted = handleTest ./networking.nix { networkd = false; };
|
||||||
netbox_3_5 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_5; };
|
|
||||||
netbox_3_6 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_6; };
|
netbox_3_6 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_6; };
|
||||||
netbox_3_7 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_7; };
|
netbox_3_7 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_7; };
|
||||||
netbox-upgrade = handleTest ./web-apps/netbox-upgrade.nix {};
|
netbox-upgrade = handleTest ./web-apps/netbox-upgrade.nix {};
|
||||||
|
|
|
@ -5,22 +5,6 @@ in
|
||||||
lib.fix (self: {
|
lib.fix (self: {
|
||||||
netbox = self.netbox_3_7;
|
netbox = self.netbox_3_7;
|
||||||
|
|
||||||
netbox_3_5 = callPackage generic {
|
|
||||||
version = "3.5.9";
|
|
||||||
hash = "sha256-CJbcuCyTuihDXrObSGyJi2XF+zgWAwcJzjxtkX8pmKs=";
|
|
||||||
extraPatches = [
|
|
||||||
# Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
|
|
||||||
./config.patch
|
|
||||||
];
|
|
||||||
tests = {
|
|
||||||
netbox = nixosTests.netbox_3_5;
|
|
||||||
inherit (nixosTests) netbox-upgrade;
|
|
||||||
};
|
|
||||||
|
|
||||||
maintainers = with lib.maintainers; [ minijackson n0emis raitobezarius ];
|
|
||||||
eol = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
netbox_3_6 = callPackage generic {
|
netbox_3_6 = callPackage generic {
|
||||||
version = "3.6.9";
|
version = "3.6.9";
|
||||||
hash = "sha256-R/hcBKrylW3GnEy10DkrLVr8YJtsSCvCP9H9LhafO9I=";
|
hash = "sha256-R/hcBKrylW3GnEy10DkrLVr8YJtsSCvCP9H9LhafO9I=";
|
||||||
|
|
|
@ -683,6 +683,7 @@ mapAliases ({
|
||||||
|
|
||||||
net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2023-09-10
|
net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2023-09-10
|
||||||
netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02
|
netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02
|
||||||
|
netbox_3_5 = throw "netbox 3.5 series has been removed as it was EOL"; # Added 2024-01-22
|
||||||
nextcloud25 = throw ''
|
nextcloud25 = throw ''
|
||||||
Nextcloud v25 has been removed from `nixpkgs` as the support for is dropped
|
Nextcloud v25 has been removed from `nixpkgs` as the support for is dropped
|
||||||
by upstream in 2023-10. Please upgrade to at least Nextcloud v26 by declaring
|
by upstream in 2023-10. Please upgrade to at least Nextcloud v26 by declaring
|
||||||
|
|
|
@ -11133,7 +11133,7 @@ with pkgs;
|
||||||
netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { };
|
netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { };
|
||||||
|
|
||||||
inherit (callPackage ../servers/web-apps/netbox { })
|
inherit (callPackage ../servers/web-apps/netbox { })
|
||||||
netbox netbox_3_5 netbox_3_6 netbox_3_7;
|
netbox netbox_3_6 netbox_3_7;
|
||||||
|
|
||||||
netbox2netshot = callPackage ../tools/admin/netbox2netshot { };
|
netbox2netshot = callPackage ../tools/admin/netbox2netshot { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue