This commit is contained in:
Stéphan Kochen
2024-11-25 22:55:54 +01:00
parent 7350cf767d
commit 0b3b015714
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -99,7 +99,8 @@ jobs:
src = ./.;
overrideSqlite3Attrs = old: {
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
+2 -1
View File
@@ -23,7 +23,8 @@ pkgs.callPackage ./yarn-project.nix { } {
src = ./.;
overrideSqlite3Attrs = old: {
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 ];
};
}
```