Skip to content

Commit 4c8382f

Browse files
committed
fix(packages/circ): Update preBuild step to remove deny warnings and improve build stability
1 parent 3ed4662 commit 4c8382f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

checks/packages-ci-matrix.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
};
3333

3434
disabledPackages = [
35-
"circ"
35+
#"circ" # has been fixed
3636
"leap"
3737
"go-opera"
3838
];

packages/circ/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ let
2424
hash = "sha256-pYG6IYGHv4DwizCdVZbOS4DUxwNtwQVcPU66fDxTxg0=";
2525
};
2626

27+
preBuild = ''
28+
sed -i 's/#!\[deny(warnings)\]//' src/lib.rs #deny warnings causes build to fail
29+
'';
30+
2731
nativeBuildInputs = [
2832
rustPlatform.bindgenHook
2933
zlib

0 commit comments

Comments
 (0)