nixpkgs/pkgs/servers/web-apps/netbox/default.nix
2024-10-23 21:07:34 +02:00

27 lines
524 B
Nix

{
lib,
nixosTests,
callPackage,
}:
let
generic = import ./generic.nix;
in
{
netbox_3_7 = callPackage generic {
version = "3.7.8";
hash = "sha256-61pJbMWXNFnvWI0z9yWvsutdCAP4VydeceANNw0nKsk=";
extraPatches = [
# Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
./config.patch
];
tests.netbox = nixosTests.netbox_3_7;
maintainers = with lib.maintainers; [
minijackson
n0emis
raitobezarius
];
eol = true;
};
}