nixpkgs/pkgs/servers/web-apps/netbox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
524 B
Nix
Raw Normal View History

2024-08-02 09:37:03 +00:00
{
lib,
nixosTests,
callPackage,
}:
2022-03-05 18:24:57 +00:00
let
generic = import ./generic.nix;
2022-03-05 18:24:57 +00:00
in
2024-08-02 09:37:03 +00:00
{
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;
2024-08-02 09:37:03 +00:00
maintainers = with lib.maintainers; [
minijackson
n0emis
raitobezarius
];
eol = true;
};
2024-08-02 09:37:03 +00:00
}