Skip to content
Snippets Groups Projects
  1. Oct 29, 2018
  2. Oct 27, 2018
  3. Oct 26, 2018
  4. Oct 23, 2018
  5. Oct 22, 2018
    • Eelco Dolstra's avatar
      Per-output reference and closure size checks · 3cd15c5b
      Eelco Dolstra authored
      In structured-attributes derivations, you can now specify per-output
      checks such as:
      
        outputChecks."out" = {
          # The closure of 'out' must not be larger than 256 MiB.
          maxClosureSize = 256 * 1024 * 1024;
      
          # It must not refer to C compiler or to the 'dev' output.
          disallowedRequisites = [ stdenv.cc "dev" ];
        };
      
        outputChecks."dev" = {
          # The 'dev' output must not be larger than 128 KiB.
          maxSize = 128 * 1024;
        };
      
      Also fixed a bug in allowedRequisites that caused it to ignore
      self-references.
      3cd15c5b
  6. Oct 20, 2018
  7. Oct 17, 2018
  8. Oct 16, 2018
  9. Oct 09, 2018
  10. Oct 08, 2018
  11. Oct 04, 2018
  12. Oct 02, 2018
  13. Oct 01, 2018
  14. Sep 28, 2018
  15. Sep 27, 2018
Loading