All checks were successful
Build all the nodes / ap01 (push) Successful in 52s
Build all the nodes / netcore01 (push) Successful in 28s
Build all the nodes / netaccess01 (push) Successful in 40s
Build all the nodes / netcore02 (push) Successful in 44s
Build the shell / build-shell (push) Successful in 33s
Build all the nodes / build01 (push) Successful in 2m1s
Run pre-commit on all files / pre-commit (push) Successful in 44s
Build all the nodes / geo01 (push) Successful in 1m58s
Build all the nodes / compute01 (push) Successful in 2m55s
Build all the nodes / web03 (push) Successful in 2m16s
Build all the nodes / bridge01 (push) Successful in 4m22s
Build all the nodes / hypervisor01 (push) Successful in 3m55s
Build all the nodes / geo02 (push) Successful in 3m57s
Build all the nodes / hypervisor02 (push) Successful in 4m3s
Build all the nodes / tower01 (push) Successful in 3m22s
Build all the nodes / hypervisor03 (push) Successful in 4m7s
Build all the nodes / storage01 (push) Successful in 3m29s
Build all the nodes / vault01 (push) Successful in 3m37s
Build all the nodes / rescue01 (push) Successful in 4m4s
Build all the nodes / web02 (push) Successful in 3m31s
Build all the nodes / web01 (push) Successful in 3m44s
This reverts commit e1c6b1b749
.
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
let
|
|
local = path: {
|
|
_type = "static";
|
|
inherit path;
|
|
};
|
|
npr = id: hash: { inherit id hash; };
|
|
in
|
|
|
|
{
|
|
lix = [
|
|
(local ./lix/01-disable-installChecks.patch)
|
|
];
|
|
|
|
"nixos-24.11" = [
|
|
# nixos/nextcloud: Rename autocreate (a no-op) to verify_bucket_exists
|
|
(npr 275165 "sha256-9a26V3Pi8yLD3N9+mC1kvJoruxRTp/qOHapnt6VX7pw=")
|
|
|
|
# Crabfit: don't depend on all google-fonts
|
|
(local ./nixpkgs/03-crabfit-karla.patch)
|
|
|
|
# netbox qrcode plugin
|
|
(local ./nixpkgs/06-netbox-qrcode.patch)
|
|
|
|
# Fix pretix tests
|
|
(npr 374822 "sha256-vM6l8Pb6F5HoZrpG4Ay3DdwwHBbv8MQy2Bo4gfiQ5zM=")
|
|
|
|
# pretalx env file option
|
|
(local ./nixpkgs/01-pretalx-environment-file.patch)
|
|
|
|
# Kanidm memberless groups provisionning
|
|
(local ./nixpkgs/07-kanidm-groups-module.patch)
|
|
(local ./nixpkgs/08-kanidm-groups-pkgs.patch)
|
|
];
|
|
|
|
"nixos-unstable" = [
|
|
# Build netbird-relay
|
|
(local ./nixpkgs/05-netbird-relay.patch)
|
|
{
|
|
_type = "commit";
|
|
sha = "87c3740ba46d1486f0b1133980e5c152006f2ee3";
|
|
hash = "sha256-0lzC7Ks0KPG8fDnPrnSh7z+NOVHNN5G5XByvmNGWr5M=";
|
|
revert = true;
|
|
}
|
|
];
|
|
|
|
"agenix" = [
|
|
{
|
|
_type = "url";
|
|
url = "https://github.com/ryantm/agenix/pull/292.patch";
|
|
hash = "sha256-e45hiHF0HbCYb+3RRhy+8nNIFvefb6SZSN3xcl1mpvI=";
|
|
}
|
|
];
|
|
}
|