eproc

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0a4b12ab29ad1259b97f3db16f47539af56449eb
parent 18bc2ced8ae223a05147151379439ce6818bf625
Author: Jared Tobin <jared@jtobin.io>
Date:   Thu,  4 Jun 2026 16:02:36 -0230

flake: add clang

Diffstat:
Mflake.nix | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/flake.nix b/flake.nix @@ -27,6 +27,7 @@ cc = pkgs.stdenv.cc; ghc = hpkgs.ghc; llvm = pkgs.llvmPackages_19.llvm; + clang = pkgs.llvmPackages_19.clang; in { packages.default = hpkgs.${lib}; @@ -40,6 +41,7 @@ cabal cc llvm + clang ]; doBenchmark = true;