summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 14:54:03 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-18 14:54:03 +0200
commite48f685639da195727ae8e322ed5ca63f88b04c5 (patch)
treec37c494336c6588d955744d0a11f9142a1448996
parent4183f37355f04deb7d2de9dfbc66df1c67a9dde0 (diff)
chore(warteraum): build with LLVM 12
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 201b9ec..5c4aaa8 100644
--- a/default.nix
+++ b/default.nix
@@ -27,7 +27,7 @@ rec {
   };
 
   warteraum = pkgs.callPackage ./nix/warteraum.nix {
-    stdenv = pkgs.clangStdenv;
+    inherit (pkgs.llvmPackages_latest) stdenv;
     inherit scryptSalt apiTokens rootSrc sourceName;
     inherit (python3.pkgs) pytest pytest-randomly requests flipdot-gschichtler;
   };