@@ -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
@@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user