1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-22 18:29:36 +01:00

packaging: Unbork win shells with unavailable dependencies

Makes the cross-x86_64-w64-mingw32 devshell slightly less
broken. It still needs a bit of massaging to function, but
that's much less cumbersome now that the generic machinery
with genericClosure that evaluates drvPath doesn't barf on
unavailable packages.
This commit is contained in:
Sergei Zimmerman 2025-11-18 23:58:50 +03:00
parent 09d6847490
commit 2de742155a
No known key found for this signature in database
3 changed files with 25 additions and 17 deletions

View file

@ -65,6 +65,6 @@ mkMesonDerivation (finalAttrs: {
'';
meta = {
platforms = lib.platforms.all;
platforms = lib.platforms.unix;
};
})

View file

@ -74,5 +74,9 @@ perl.pkgs.toPerlModule (
];
strictDeps = false;
meta = {
platforms = lib.platforms.unix;
};
})
)