commit cb0218f2b37d760292a8396da743ef3377a397b4
parent 690785db542a958976fe289044f612a240a2cc9e
Author: Jared Tobin <jared@jtobin.io>
Date: Thu, 4 Jun 2026 16:01:52 -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;