mirror of
https://github.com/perstarkse/minne.git
synced 2026-07-06 21:05:17 +02:00
dev: devenv deprecation
removed devenv in favor for plain nix, implemented using flake-parts
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user