forked from lix-project/nixos-module
fix: add cmake and toml11 to inputs
toml11 is needed anyway, cmake is only needed for meson. meson isn't needed right now but let's not have this cause problems *again* soon
This commit is contained in:
parent
b6e09b8191
commit
49144e91d1
13
overlay.nix
13
overlay.nix
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue