Skip to content
Snippets Groups Projects
  1. May 03, 2013
  2. Apr 26, 2013
  3. Apr 23, 2013
  4. Mar 08, 2013
  5. Mar 07, 2013
  6. Feb 19, 2013
  7. Jan 21, 2013
  8. Jan 02, 2013
  9. Dec 21, 2012
  10. Dec 06, 2012
  11. Dec 05, 2012
  12. Nov 26, 2012
    • Eelco Dolstra's avatar
      Undo accidental debug change · 08964d73
      Eelco Dolstra authored
      08964d73
    • Eelco Dolstra's avatar
      Make "nix-build -A <derivation>.<output>" do the right thing · 46a369ad
      Eelco Dolstra authored
      For example, given a derivation with outputs "out", "man" and "bin":
      
        $ nix-build -A pkg
      
      produces ./result pointing to the "out" output;
      
        $ nix-build -A pkg.man
      
      produces ./result-man pointing to the "man" output;
      
        $ nix-build -A pkg.all
      
      produces ./result, ./result-man and ./result-bin;
      
        $ nix-build -A pkg.all -A pkg2
      
      produces ./result, ./result-man, ./result-bin and ./result-2.
      46a369ad
  13. Nov 23, 2012
  14. Nov 09, 2012
  15. Nov 06, 2012
  16. Oct 23, 2012
  17. Oct 18, 2012
  18. Oct 17, 2012
  19. Oct 11, 2012
  20. Oct 03, 2012
  21. Oct 02, 2012
    • Eelco Dolstra's avatar
      Add operation ‘nix-store --repair-path’ · 9958bd69
      Eelco Dolstra authored
      This operation allows fixing corrupted or accidentally deleted store
      paths by redownloading them using substituters, if available.
      
      Since the corrupted path cannot be replaced atomically, there is a
      very small time window (one system call) during which neither the old
      (corrupted) nor the new (repaired) contents are available.  So
      repairing should be used with some care on critical packages like
      Glibc.
      9958bd69
  22. Sep 21, 2012
  23. Sep 19, 2012
  24. Sep 13, 2012
    • Eelco Dolstra's avatar
      nix-collect-garbage: Support --dry-run · 983220bc
      Eelco Dolstra authored
      983220bc
    • Eelco Dolstra's avatar
      nix-profile.sh: Revert to single-user version · aac14222
      Eelco Dolstra authored
      Commit 6a214f3e copied most of the Nix
      shell initialisation code from NixOS to nix-profile.sh; however, that
      code assumes a multi-user install and is Linux-specific (e.g. it calls
      the "stat" command).  So go back to the simple single-user version.
      
      Fixes #49.
      aac14222
    • Eelco Dolstra's avatar
      Put a time-to-live on negative binary cache lookups · 47ae3ce2
      Eelco Dolstra authored
      Negative lookups are purged from the DB after a day, at most once per
      day.  However, for non-"have" lookups (e.g. all except "nix-env
      -qas"), negative lookups are ignored after one hour.  This is to
      ensure that you don't have to wait a day for an operation like
      "nix-env -i" to start using new binaries in the cache.
      
      Should probably make this configurable.
      47ae3ce2
Loading