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 eabed5a04f - Show all commits

View file

@ -24,10 +24,17 @@ in
version = "2.18.3-lix${versionSuffix}";
VERSION_SUFFIX = "-lix${versionSuffix}";
# We only include CMake so that Meson can locate toml11, which only ships CMake dependency metadata.
dontUseCmakeConfigure = true;
patches = [ ];
# FIXME: we don't know why this was not being picked up properly when
# included in nativeCheckInputs.
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ final.git ];
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
final.cmake
final.toml11
# FIXME: we don't know why this was not being picked up properly when
# included in nativeCheckInputs.
final.git
];
});
stable = nix_2_18;
nix_2_18_upstream = prev.nixVersions.nix_2_18;