commit 881ca5128665d5e2207803751054d7d32c4c864c
parent 480f24d852e100bb87cd69f2eda531bdb1306495
Author: Jared Tobin <jared@jtobin.io>
Date: Thu, 4 Jun 2026 16:01:40 -0230
flake: add clang
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/flake.nix b/flake.nix
@@ -18,7 +18,8 @@
pkgs = import nixpkgs { inherit system; };
hlib = pkgs.haskell.lib;
- llvm = pkgs.llvmPackages_19.llvm;
+ llvm = pkgs.llvmPackages_19.llvm;
+ clang = pkgs.llvmPackages_19.clang;
hpkgs = pkgs.haskell.packages.ghc910.extend (new: old: {
${lib} = old.callCabal2nixWithOptions lib ./. "--enable-profiling" {};
@@ -40,6 +41,7 @@
cabal
cc
llvm
+ clang
];
doBenchmark = true;