fix(action-validator): patch to build & use in default
This commit is contained in:
parent
0c44467e0b
commit
32b0bf7e1c
4 changed files with 1634 additions and 2 deletions
|
@ -38,7 +38,7 @@ precedence = "closest"
|
|||
[[annotations]]
|
||||
SPDX-FileCopyrightText = "2024 Lubin Bailly <lubin.bailly@dgnum.eu>"
|
||||
SPDX-License-Identifier = "EUPL-1.2"
|
||||
path = ["modules/nixos/extranix/0001-revert-don-t-parse-md-in-js.patch", "modules/nixos/extranix/0002-chore-remove-useless-dependencies.patch", "modules/nixos/extranix/0003-feat-separate-HTML-description-of-MD-description.patch", "modules/nixos/extranix/0004-fix-indentation-of-ul.patch", "modules/nixos/extranix/0005-feat-match-all-substring-by-default.patch"]
|
||||
path = ["modules/nixos/extranix/0001-revert-don-t-parse-md-in-js.patch", "modules/nixos/extranix/0002-chore-remove-useless-dependencies.patch", "modules/nixos/extranix/0003-feat-separate-HTML-description-of-MD-description.patch", "modules/nixos/extranix/0004-fix-indentation-of-ul.patch", "modules/nixos/extranix/0005-feat-match-all-substring-by-default.patch", "patches/nixpkgs/02-action-validator.patch"]
|
||||
precedence = "closest"
|
||||
|
||||
[[annotations]]
|
||||
|
|
|
@ -9,7 +9,11 @@ in
|
|||
|
||||
{
|
||||
sources ? bootstrap.sources,
|
||||
pkgs ? bootstrap.pkgs,
|
||||
pkgs ? import sources.nixos-unstable {
|
||||
overlays = [
|
||||
(_: super: { lib = super.lib.extend bootstrap.overlays.lib; })
|
||||
];
|
||||
},
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -133,6 +137,7 @@ let
|
|||
"modules/nixos/extranix/0003-feat-separate-HTML-description-of-MD-description.patch"
|
||||
"modules/nixos/extranix/0004-fix-indentation-of-ul.patch"
|
||||
"modules/nixos/extranix/0005-feat-match-all-substring-by-default.patch"
|
||||
"patches/nixpkgs/02-action-validator.patch"
|
||||
];
|
||||
copyright = "2024 Lubin Bailly <lubin.bailly@dgnum.eu>";
|
||||
}
|
||||
|
|
|
@ -38,6 +38,9 @@ in
|
|||
"nixos-unstable" = [
|
||||
# Build netbird-relay
|
||||
(local ./nixpkgs/05-netbird-relay.patch)
|
||||
|
||||
# action-validator update wasm-bindgen
|
||||
(local ./nixpkgs/02-action-validator.patch)
|
||||
];
|
||||
|
||||
"agenix" = [
|
||||
|
|
1624
patches/nixpkgs/02-action-validator.patch
Normal file
1624
patches/nixpkgs/02-action-validator.patch
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue