dev: devenv deprecation

removed devenv in favor for plain nix, implemented using flake-parts
This commit is contained in:
Per Stark
2026-06-28 22:23:03 +02:00
parent 0bba1f5a24
commit 1f0c7d4e51
17 changed files with 1012 additions and 720 deletions
+8 -3
View File
@@ -6,7 +6,8 @@
cacert,
writeText,
writeShellScript,
}: let
}:
let
cmakeOverride = writeText "override.cmake" ''
# macOS paths usually start with /Users/*. Unfortunately, clang-cl interprets
# paths starting with /U as macro undefines, so we need to put a -- before the
@@ -109,14 +110,18 @@
exec "$real_clang_cl" "$@"
'';
in {
in
{
inherit clangClWrapper;
xwinCargoCache = stdenv.mkDerivation {
pname = "cargo-xwin-cache";
version = "17.2";
nativeBuildInputs = [xwin cacert];
nativeBuildInputs = [
xwin
cacert
];
preferLocalBuild = true;
allowSubstitutes = false;