Unverified Commit d09eb594 authored by Minijackson's avatar Minijackson
Browse files

netbox_3_6: remove

parent 69610ea2
Loading
Loading
Loading
Loading
+12 −17
Original line number Diff line number Diff line
{ lib, nixosTests, callPackage, }:
{
  lib,
  nixosTests,
  callPackage,
}:
let
  generic = import ./generic.nix;
in
lib.fix (self: {
  netbox_3_6 = callPackage generic {
    version = "3.6.9";
    hash = "sha256-R/hcBKrylW3GnEy10DkrLVr8YJtsSCvCP9H9LhafO9I=";
    extraPatches = [
      # Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
      ./config.patch
    ];
    tests.netbox = nixosTests.netbox_3_6;

    maintainers = with lib.maintainers; [ minijackson n0emis raitobezarius ];
    eol = true;
  };

{
  netbox_3_7 = callPackage generic {
    version = "3.7.8";
    hash = "sha256-61pJbMWXNFnvWI0z9yWvsutdCAP4VydeceANNw0nKsk=";
@@ -25,7 +16,11 @@ lib.fix (self: {
    ];
    tests.netbox = nixosTests.netbox_3_7;

    maintainers = with lib.maintainers; [ minijackson n0emis raitobezarius ];
    maintainers = with lib.maintainers; [
      minijackson
      n0emis
      raitobezarius
    ];
    eol = true;
  };
})
}
+2 −0
Original line number Diff line number Diff line
@@ -770,6 +770,8 @@ mapAliases {

  ncdu_2 = ncdu; # Added 2022-07-22
  neocities-cli = neocities; # Added 2024-07-31
  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
  nextcloud27 = throw ''
    Nextcloud v27 has been removed from `nixpkgs` as the support for is dropped
    by upstream in 2024-06. Please upgrade to at least Nextcloud v28 by declaring
+1 −2
Original line number Diff line number Diff line
@@ -10274,8 +10274,7 @@ with pkgs;
  netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { };
  inherit (callPackage ../servers/web-apps/netbox { })
    netbox_3_6 netbox_3_7;
  inherit (callPackage ../servers/web-apps/netbox { }) netbox_3_7;
  # Not in aliases because it wouldn't get picked up by callPackage
  netbox = netbox_4_1;