9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, nixosTests, callPackage, fetchpatch }:
|
|
let
|
|
generic = import ./generic.nix;
|
|
in
|
|
{
|
|
netbox_3_3 = callPackage generic {
|
|
version = "3.3.10";
|
|
hash = "sha256-MeOfTU5IxNDoUh7FyvwAQNRC/CE0R6p40WnlF+3RuxA=";
|
|
extraPatches = [
|
|
# Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
|
|
./config_3_3.patch
|
|
./graphql-3_2_0.patch
|
|
# fix compatibility ith django 4.1
|
|
(fetchpatch {
|
|
url = "https://github.com/netbox-community/netbox/pull/10341/commits/ce6bf9e5c1bc08edc80f6ea1e55cf1318ae6e14b.patch";
|
|
sha256 = "sha256-aCPQp6k7Zwga29euASAd+f13hIcZnIUu3RPAzNPqgxc=";
|
|
})
|
|
];
|
|
|
|
tests.netbox = nixosTests.netbox_3_3;
|
|
maintainers = with lib.maintainers; [ n0emis raitobezarius ];
|
|
eol = true;
|
|
};
|
|
|
|
netbox = callPackage generic {
|
|
version = "3.5.4";
|
|
hash = "sha256-CJ7NgKDDEmOFFULaG6wjP5pvGieyU4YRsvmIvqve5qg=";
|
|
extraPatches = [
|
|
# Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
|
|
./config.patch
|
|
];
|
|
tests = {
|
|
inherit (nixosTests) netbox;
|
|
};
|
|
|
|
maintainers = with lib.maintainers; [ minijackson n0emis raitobezarius ];
|
|
};
|
|
}
|