Commit 79788285 authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

closure-info: switch to stdenvNoCC

This doesn't need a C/C++ compiler.
parent 25377ad3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4,13 +4,13 @@
# "nix-store --load-db" and "nix-store --register-validity
# --hash-given".

{ stdenv, coreutils, jq }:
{ stdenvNoCC, coreutils, jq }:

{ rootPaths }:

assert builtins.langVersion >= 5;

stdenv.mkDerivation {
stdenvNoCC.mkDerivation {
  name = "closure-info";

  __structuredAttrs = true;