Skip to content
Snippets Groups Projects
  1. Mar 14, 2013
  2. Mar 08, 2013
  3. Mar 07, 2013
  4. Feb 28, 2013
  5. Feb 27, 2013
  6. Feb 26, 2013
  7. Feb 08, 2013
  8. Jan 24, 2013
  9. Jan 04, 2013
  10. Jan 03, 2013
  11. Jan 02, 2013
  12. Dec 29, 2012
  13. Dec 21, 2012
  14. Dec 20, 2012
  15. Dec 12, 2012
  16. Dec 06, 2012
  17. Dec 05, 2012
  18. Dec 04, 2012
  19. Nov 23, 2012
  20. Nov 19, 2012
    • Eelco Dolstra's avatar
      nix-store -r: Add ‘--ignore-unknown’ flag · 9de6bc5d
      Eelco Dolstra authored
      This flag causes paths that do not have a known substitute to be
      quietly ignored.  This is mostly useful for Charon, allowing it to
      speed up deployment by letting a machine use substitutes for all
      substitutable paths, instead of uploading them.  The latter is
      frequently faster, e.g. if the target machine has a fast Internet
      connection while the source machine is on a slow ADSL line.
      9de6bc5d
  21. Nov 09, 2012
  22. Nov 06, 2012
  23. Oct 23, 2012
  24. Oct 12, 2012
  25. Oct 04, 2012
  26. Oct 03, 2012
  27. Oct 02, 2012
  28. Sep 27, 2012
    • Eelco Dolstra's avatar
      Allow dashes in identifiers · 95c74eae
      Eelco Dolstra authored
      In Nixpkgs, the attribute in all-packages.nix corresponding to a
      package is usually equal to the package name.  However, this doesn't
      work if the package contains a dash, which is fairly common.  The
      convention is to replace the dash with an underscore (e.g. "dbus-lib"
      becomes "dbus_glib"), but that's annoying.  So now dashes are valid in
      variable / attribute names, allowing you to write:
      
        dbus-glib = callPackage ../development/libraries/dbus-glib { };
      
      and
      
        buildInputs = [ dbus-glib ];
      
      Since we don't have a negation or subtraction operation in Nix, this
      is unambiguous.
      95c74eae
  29. Sep 25, 2012
Loading