- Jul 17, 2015
-
-
Jaka Hudoklin authored
-
- May 19, 2015
-
-
Eelco Dolstra authored
-
- Nov 04, 2014
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- Sep 17, 2014
-
-
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.
-
- Jul 16, 2014
-
-
Eelco Dolstra authored
-
- Jun 12, 2014
-
-
Steve Purcell authored
- Use define-derived-mode to declare nix-mode - Use autoloads to ensure nix-mode is usable (and enabled) without needing `require` - Use set + make-local-variable instead of longer 2-step equivalent
-
- May 13, 2014
-
-
Ricky Elrod authored
Signed-off-by:
Ricky Elrod <ricky@elrod.me>
-
- May 02, 2014
-
-
Eelco Dolstra authored
-
- Apr 08, 2014
-
- Apr 07, 2014
-
-
Eelco Dolstra authored
-
- Feb 01, 2014
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- Oct 03, 2012
-
-
Eelco Dolstra authored
-
- Sep 27, 2012
-
-
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.
-
- May 31, 2012
-
-
Michel Alexandre Salim authored
fixes to nix-worker systemd service descriptor: - remove commented-out lines - register the file for distribution in Makefile.am
-
Michel Alexandre Salim authored
-
- Aug 06, 2011
-
-
Eelco Dolstra authored
-
- Jul 13, 2011
-
-
Eelco Dolstra authored
x.y.z or default (as originally proposed in https://mail.cs.uu.nl/pipermail/nix-dev/2009-September/002989.html). For instance, an expression like stdenv.lib.attrByPath ["features" "ckSched"] false args can now be written as args.features.ckSched or false
-
- Feb 14, 2011
-
-
Florian Friesdorf authored
this enables (require 'nix-mode)
-
- Jun 18, 2009
-
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
- Jan 28, 2009
-
-
Marc Weber authored
-
- Dec 12, 2007
-
-
Marc Weber authored
-
- Dec 10, 2007
-
-
Marc Weber authored
-
- Oct 02, 2006
-
-
Eelco Dolstra authored
-
- May 12, 2006
-
-
Eelco Dolstra authored
-
- Jun 25, 2004
-
-
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.
-
- Jun 20, 2004
-
-
Eelco Dolstra authored
-
- Jun 04, 2004
-
-
Eelco Dolstra authored
-