aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-22configure: Force regeneration of Makefile.configEelco Dolstra
2014-09-19attrNames: Don't allocate duplicates of the symbolsEelco Dolstra
2014-09-19Fix off-by-oneEelco Dolstra
2014-09-19Inline Bindings::find()Eelco Dolstra
2014-09-19Store Attrs inside BindingsEelco Dolstra
This prevents a double allocation per attribute set.
2014-09-19Remove bogus commentEelco Dolstra
2014-09-18Remove debug statementEelco Dolstra
2014-09-18Store.so: Add dependency on libnixutilEelco Dolstra
Issue #346.
2014-09-18Update spec fileEelco Dolstra
http://hydra.nixos.org/build/14344391
2014-09-18Install some pkgconfig filesEelco Dolstra
2014-09-17Remove unused w3m dependencyEelco Dolstra
2014-09-17On Linux, disable address space randomizationEelco Dolstra
2014-09-17Add Make flag to disable optimizationEelco Dolstra
2014-09-17Add some instrumentation for debugging GC leaksEelco Dolstra
2014-09-17Settings: Add bool get()Eelco Dolstra
2014-09-17Derive Emacs nix-mode from prog-mode.Robert Helgesson
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.
2014-09-16Remove unhelpful suggestionEelco Dolstra
2014-09-16Delete bugs.xmlEelco Dolstra
2014-09-16Make troubleshooting an appendixEelco Dolstra
2014-09-16Style tweakEelco Dolstra
2014-09-16Fix parallel make of manpagesEelco Dolstra
2014-09-16Fix references to version.txtEelco Dolstra
2014-09-16Drop separate release notesEelco Dolstra
2014-09-16Undocument NIX_OTHER_STORESEelco Dolstra
2014-09-16Tweak some chapter titlesEelco Dolstra
2014-09-16Drop "service deployment" bla blaEelco Dolstra
2014-09-16Drop reference to FreeBSDEelco Dolstra
2014-09-16Remove pointless "license" sectionEelco Dolstra
2014-09-16Release notes: Use a section per versionEelco Dolstra
2014-09-16Nicer file names for the release notesEelco Dolstra
2014-09-16Manual build fixesEelco Dolstra
2014-09-16Merge branch 'master' of github.com:thatdocslady/nixEelco Dolstra
Conflicts: doc/manual/release-notes.xml doc/manual/writing-nix-expressions.xml
2014-09-16Add some hyperlinks between NIXPATH and -IEelco Dolstra
2014-09-05build-remote.pl: UTF-8-decode errorsEelco Dolstra
2014-09-05TweakEelco Dolstra
2014-09-05tests/remote-builds.nix: Time out fasterEelco Dolstra
2014-09-05Fix build-remote.plEelco Dolstra
Apparently, turning on utf8 encoding on stderr changes its flushing behaviour, causing sendReply to not send anything. http://hydra.nixos.org/build/13944384
2014-09-04Fix dependency orderingEelco Dolstra
2014-09-02Fix boost::too_many_args errorEelco Dolstra
Fixes #333.
2014-09-01Add an 'optimiseStore' remote procedure call.Ludovic Courtès
2014-08-29Shut up "Wide character" warnings in Perl scriptsEelco Dolstra
2014-08-28Add disallowedReferences / disallowedRequisitesEelco Dolstra
For the "stdenv accidentally referring to bootstrap-tools", it seems easier to specify the path that we don't want to depend on, e.g. disallowedRequisites = [ bootstrapTools ];
2014-08-28allowedRequisites: Drop stdenv mentionEelco Dolstra
I don't think it's a good idea to use allowedRequisites for stdenv, so don't mention it here.
2014-08-28Fix manual buildEelco Dolstra
2014-08-28Introduce allowedRequisites featureGergely Risko
2014-08-27Restructuring the Nix manualMikey Ariel
2014-08-23Fix building with ClangEelco Dolstra
2014-08-23Document the "out" usage in allowedReferencesGergely Risko
2014-08-21fix disappearing bash argumentsJoel Taylor
2014-08-21Fix testsEelco Dolstra
So all these years I was totally deluded about the meaning of "set -e". You might think that it causes statements like "false && true" or "! true" to fail, but it doesn't...