File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 36
36
} )
37
37
] ;
38
38
} ;
39
- stdenv = pkgs . llvmPackages_18 . stdenv ;
39
+ stdenv = pkgs . llvmPackages_19 . stdenv ;
40
+ #stdenv = pkgs.gcc12Stdenv;
40
41
operon = import ./operon.nix { inherit stdenv pkgs system ; } ;
41
42
in
42
43
rec
43
44
{
44
45
packages = {
45
46
default = operon . overrideAttrs ( old : {
46
- cmakeFlags = old . cmakeFlags ++ [ "-DBUILD_CLI_PROGRAMS=ON" ] ;
47
+ cmakeFlags = old . cmakeFlags ++ [ "-DBUILD_CLI_PROGRAMS=ON" "-DCPM_USE_LOCAL_PACKAGES=ON" ] ;
47
48
} ) ;
48
49
49
50
library = operon . overrideAttrs ( old : {
59
60
name = "operon" ;
60
61
61
62
nativeBuildInputs = operon . nativeBuildInputs ++ ( with pkgs ; [
62
- clang-tools_18
63
+ clang-tools_19
63
64
cppcheck
64
65
include-what-you-use
65
66
cmake-language-server
66
67
] ) ;
67
68
68
69
buildInputs = operon . buildInputs ++ ( with pkgs ; [
69
70
gdb
70
- gcc13
71
71
graphviz
72
72
hyperfine
73
73
linuxPackages_latest . perf
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
9
9
"x86_64-linux" = "build-linux" ;
10
10
"x86_64-darwin" = "build-linux" ;
11
11
"aarch64-darwin" = "build-osx" ;
12
- } . "${ system } " ;
12
+ } . "${ system } " ;
13
13
14
14
cmakeFlags = [
15
15
"--preset ${ cmakePreset } "
@@ -27,9 +27,8 @@ stdenv.mkDerivation rec {
27
27
doctest
28
28
eigen
29
29
eve
30
- fast-float
30
+ ( fast-float . overrideAttrs ( { version = "6.1.6" ; } ) )
31
31
fmt
32
- icu
33
32
jemalloc
34
33
cpptrace
35
34
libassert
You can’t perform that action at this time.
0 commit comments