summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 16:28:10 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 16:28:10 +0200
commit1bc494fbd8770329afdcc98c7ae666f3e71e88fd (patch)
tree4e0e32b993636d1396e7a35d3b56f8cf31ea13f0
parente48f685639da195727ae8e322ed5ca63f88b04c5 (diff)
feat(warteraum-static): build using clang
Using the default version since the versioned llvm stdenvs don't have
the static adapters applied: https://github.com/NixOS/nixpkgs/pull/118313
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 5c4aaa8..7a00d39 100644
--- a/default.nix
+++ b/default.nix
@@ -21,7 +21,7 @@ in
 
 rec {
   warteraum-static = pkgs.pkgsStatic.callPackage ./nix/warteraum.nix {
-    # TODO(sterni) clang
+    inherit (pkgs.pkgsStatic.llvmPackages) stdenv;
     inherit scryptSalt apiTokens rootSrc sourceName;
     inherit (python3.pkgs) pytest pytest-randomly requests flipdot-gschichtler;
   };