We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6a972 commit 09d9008Copy full SHA for 09d9008
shell.nix
@@ -1,13 +1,22 @@
1
with import <nixpkgs> {};
2
let
3
+ pkgs = import (builtins.fetchGit {
4
+ # Descriptive name to make the store path easier to identify
5
+ name = "cmake24-revision";
6
+ url = "https://github.com/NixOS/nixpkgs/";
7
+ ref = "refs/heads/nixpkgs-unstable";
8
+ rev = "55070e598e0e03d1d116c49b9eff322ef07c6ac6";
9
+ }) {};
10
+
11
+ cmake24 = pkgs.cmake;
12
gccForLibs = stdenv.cc.cc;
13
in stdenv.mkDerivation {
14
name = "llvm-env";
15
buildInputs = [
16
bashInteractive
17
python3
18
ninja
- cmake
19
+ cmake24
20
llvmPackages_latest.llvm
21
];
22
0 commit comments