fix(ds-fr): Lock patch with hash
All checks were successful
Check meta / check_dns (pull_request) Successful in 18s
Check meta / check_meta (pull_request) Successful in 20s
Check workflows / check_workflows (pull_request) Successful in 24s
Build all the nodes / bridge01 (pull_request) Successful in 54s
Build all the nodes / geo01 (pull_request) Successful in 59s
Build all the nodes / geo02 (pull_request) Successful in 57s
Build all the nodes / rescue01 (pull_request) Successful in 1m4s
Build all the nodes / storage01 (pull_request) Successful in 1m7s
Build all the nodes / web02 (pull_request) Successful in 1m0s
Build all the nodes / vault01 (pull_request) Successful in 1m20s
Build all the nodes / web01 (pull_request) Successful in 1m34s
Run pre-commit on all files / check (pull_request) Successful in 23s
Build all the nodes / web03 (pull_request) Successful in 1m1s
Build all the nodes / compute01 (pull_request) Successful in 5m16s
Build all the nodes / bridge01 (push) Successful in 56s
Build all the nodes / geo01 (push) Successful in 1m0s
Build all the nodes / geo02 (push) Successful in 1m1s
Build all the nodes / rescue01 (push) Successful in 1m10s
Build all the nodes / compute01 (push) Successful in 1m32s
Build all the nodes / storage01 (push) Successful in 1m4s
Build all the nodes / web02 (push) Successful in 1m5s
Build all the nodes / vault01 (push) Successful in 1m17s
Run pre-commit on all files / check (push) Successful in 25s
Build all the nodes / web03 (push) Successful in 1m4s
Build all the nodes / web01 (push) Successful in 1m38s

This commit is contained in:
sinavir 2024-12-06 10:58:43 +01:00
parent d4dab1e7ae
commit 09b5963449
No known key found for this signature in database

View file

@ -25,7 +25,12 @@ in
(old: {
dsModules = old.dsModules.overrideAttrs {
prePatch = ''
${pkgs.lib.getExe pkgs.git} apply -p1 < ${builtins.fetchurl "https://git.dgnum.eu/DGNum/demarches-normaliennes/commit/${dgn-id}.patch"}
${pkgs.lib.getExe pkgs.git} apply -p1 < ${
pkgs.fetchurl {
url = "https://git.dgnum.eu/DGNum/demarches-normaliennes/commit/${dgn-id}.patch";
hash = "sha256-aCq/WkV4+PUSIzXgznwm2sAcaz12Y1zmUbh7QoXoMsM=";
}
}
'';
};
});