Skip to content
Snippets Groups Projects
  1. Jul 17, 2015
  2. May 19, 2015
  3. Nov 04, 2014
  4. Sep 17, 2014
    • Robert Helgesson's avatar
      Derive Emacs nix-mode from prog-mode. · eca29bd7
      Robert Helgesson authored
      Emacs 24.1 introduced the notion of "basic major modes" and among these
      is prog-mode, see section "23.2.5 Basic Major Modes" in the Emacs
      manual. The prog-mode basic major mode is recommended as a base for
      derived major modes that are intended for editing source code.
      eca29bd7
  5. Jul 16, 2014
  6. Jun 12, 2014
  7. May 13, 2014
  8. May 02, 2014
  9. Apr 08, 2014
  10. Apr 07, 2014
  11. Feb 01, 2014
  12. Oct 03, 2012
  13. 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
  14. May 31, 2012
  15. Aug 06, 2011
  16. Jul 13, 2011
  17. Feb 14, 2011
  18. Jun 18, 2009
  19. Jan 28, 2009
  20. Dec 12, 2007
  21. Dec 10, 2007
  22. Oct 02, 2006
  23. May 12, 2006
  24. Jun 25, 2004
    • Eelco Dolstra's avatar
      * A flag `--keep-going / -k' to keep building goals if one fails, as · b113edea
      Eelco Dolstra authored
        much as possible.  (This is similar to GNU Make's `-k' flag.)
      
      * Refactoring to implement this: previously we just bombed out when
        a build failed, but now we have to clean up.  In particular this
        means that goals must be freed quickly --- they shouldn't hang
        around until the worker exits.  So the worker now maintains weak
        pointers in order not to prevent garbage collection.
      
      * Documented the `-k' and `-j' flags.
        
      b113edea
  25. Jun 20, 2004
  26. Jun 04, 2004
Loading