Skip to content

Commit 09d9008

Browse files
committed
Change cmake version
1 parent 8f6a972 commit 09d9008

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

shell.nix

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
with import <nixpkgs> {};
22
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;
312
gccForLibs = stdenv.cc.cc;
413
in stdenv.mkDerivation {
514
name = "llvm-env";
615
buildInputs = [
716
bashInteractive
817
python3
918
ninja
10-
cmake
19+
cmake24
1120
llvmPackages_latest.llvm
1221
];
1322

0 commit comments

Comments
 (0)