aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-30 02:54:00 +0000
committerFuwn <[email protected]>2024-09-30 02:54:00 +0000
commite09f680b48f99f47e7cb8fe6e0bfdbd12e285944 (patch)
treed36b5a9269f98e199d6b67a795f4aa95b5490973
parentchore(nix): set up flake (diff)
downloadmaple-e09f680b48f99f47e7cb8fe6e0bfdbd12e285944.tar.xz
maple-e09f680b48f99f47e7cb8fe6e0bfdbd12e285944.zip
chore(nix-shell): soft-pin build inputs
-rw-r--r--shell.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell.nix b/shell.nix
index 55c7650..6647728 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,8 +3,9 @@
}:
pkgs.mkShell {
buildInputs = with pkgs; [
- libressl
+ libressl_3_9
ninja
- clang
+ clang_19
+ (llvmPackages_19.clang-tools.override { enableLibcxx = true; })
];
}