Merge pull request #95 from stephank/fix-ci

Fix CI
This commit is contained in:
Stéphan Kochen
2024-12-11 08:59:06 +01:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -99,7 +99,8 @@ jobs:
src = ./.; src = ./.;
overrideSqlite3Attrs = old: { overrideSqlite3Attrs = old: {
npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite. npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite.
buildInputs = old.buildInputs ++ (with pkgs; [ python3 sqlite ]); nativeBuildInputs = [ pkgs.python311 ];
buildInputs = old.buildInputs ++ [ pkgs.sqlite ];
}; };
} }
EOF EOF
+2 -1
View File
@@ -23,7 +23,8 @@ pkgs.callPackage ./yarn-project.nix { } {
src = ./.; src = ./.;
overrideSqlite3Attrs = old: { overrideSqlite3Attrs = old: {
npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite. npm_config_sqlite = "/"; # Don't accidentally use the wrong sqlite.
buildInputs = old.buildInputs ++ (with pkgs; [ python3 sqlite ]); nativeBuildInputs = [ pkgs.python311 ];
buildInputs = old.buildInputs ++ [ pkgs.sqlite ];
}; };
} }
``` ```