Skip to content
Snippets Groups Projects
  1. Nov 07, 2018
  2. Nov 05, 2018
  3. Nov 01, 2018
  4. Oct 31, 2018
  5. Oct 30, 2018
  6. Oct 29, 2018
  7. Oct 27, 2018
  8. Oct 26, 2018
  9. Oct 23, 2018
  10. 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.
      Unverified
      3cd15c5b
  11. Oct 20, 2018
  12. Oct 17, 2018
  13. Oct 16, 2018
  14. Oct 09, 2018
  15. Oct 08, 2018
  16. Oct 04, 2018
Loading