Remove prefetch-npm-deps override #18

Closed
k900 wants to merge 45 commits from k900/nixos-module:prefetch-npm-fix into main
Showing only changes of commit a428fa24ae - Show all commits

View file

@ -28,12 +28,14 @@ in
dontUseCmakeConfigure = true; dontUseCmakeConfigure = true;
patches = [ ]; patches = [ ];
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ buildInputs = old.buildInputs or [ ] ++ [
final.cmake
final.toml11 final.toml11
];
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
final.buildPackages.cmake
# FIXME: we don't know why this was not being picked up properly when # FIXME: we don't know why this was not being picked up properly when
# included in nativeCheckInputs. # included in nativeCheckInputs.
final.git final.buildPackages.git
]; ];
}); });
stable = nix_2_18; stable = nix_2_18;