Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-15 | use sha256 hashes in the examples | Harmen | 3 | -5/+5 | |
And fix a dead link. | |||||
2017-05-29 | Merge pull request #1393 from pyrtsa/patch-1 | Eelco Dolstra | 1 | -1/+1 | |
Fix variable name typo in derivations doc | |||||
2017-05-28 | Remove stray `>` in builtins doc | Pyry Jahkola | 1 | -1/+1 | |
2017-05-28 | Fix variable name typo in derivations doc | Pyry Jahkola | 1 | -1/+1 | |
2017-05-24 | Merge pull request #1382 from FRidh/patch-1 | Eelco Dolstra | 1 | -0/+18 | |
Document fetchTarball can take a sha256 | |||||
2017-05-17 | Document that builtins.match takes a POSIX extended RE | Eelco Dolstra | 1 | -4/+10 | |
2017-05-11 | Document fetchTarball can take a sha256 | Frederik Rietdijk | 1 | -0/+18 | |
Note that I refer to `nix-prefetch-url`. | |||||
2017-05-10 | Typo | Eelco Dolstra | 1 | -1/+1 | |
2017-05-10 | doc: builtins.attrNames returns alphabetically sorted list | Domen Kožar | 1 | -1/+1 | |
2017-04-17 | Manual: document tryEval | Linus Heckemann | 1 | -0/+13 | |
2017-02-21 | Fix XML validity | Eelco Dolstra | 1 | -9/+8 | |
2017-02-20 | Document toString better | Linus Heckemann | 1 | -4/+12 | |
2016-12-11 | Document path-search behaviour | Linus Heckemann | 1 | -1/+10 | |
2016-12-09 | Document builtins.match, fixes #1145 | Domen Kožar | 1 | -0/+29 | |
2016-09-21 | Document the { __toString } interface | zimbatm | 1 | -2/+2 | |
2016-08-26 | doc: move set functor para to Sets section | Domen Kožar | 2 | -18/+17 | |
2016-08-11 | doc: add an example for builtins.substring | Domen Kožar | 1 | -1/+8 | |
2016-08-10 | s/powerpc-darwin/x86_64-darwin/ | Domen Kožar | 2 | -2/+2 | |
Let's step in line with time and document more realistic values. | |||||
2016-05-30 | Merge pull request #576 from qknight/args_explanation | Domen Kožar | 1 | -5/+11 | |
extended args@ explanation | |||||
2016-05-30 | Update language-constructs.xml | Joachim Schiele | 1 | -1/+1 | |
2016-05-30 | Update language-constructs.xml | Joachim Schiele | 1 | -2/+2 | |
2016-04-26 | fix "nix-build" examples | Scott R. Parish | 1 | -10/+8 | |
The existing "nix-build" examples were failing: error: cannot auto-call a function that has an argument without a default value (‘system’) Thanks to @groxxda on irc for pointing out the fix! Updated to completely remove unneeded path argument, suggested by @joachifm Updated to remove other occurences of `all-packages.nix` from files as suggested by @domenkozar | |||||
2016-02-12 | Merge pull request #762 from ctheune/ctheune-floats | Eelco Dolstra | 3 | -11/+16 | |
Implement floats | |||||
2016-01-06 | Update documentation for floats. | Christian Theune | 3 | -12/+17 | |
2016-01-05 | manual: document builtins.functionArgs | Vladimír Čunát | 1 | -1/+19 | |
The text is just a conversion of comment from src/libexpr/primops.cc | |||||
2015-09-01 | Fix readDir example | Eelco Dolstra | 1 | -1/+1 | |
Fixes https://github.com/NixOS/nixos-homepage/issues/46. | |||||
2015-07-28 | Add sort primop | Eelco Dolstra | 1 | -0/+23 | |
2015-07-28 | Add primop genList | Eelco Dolstra | 1 | -0/+18 | |
This can be used to implement functions like ‘imap’ (or for that matter, ‘map’) without the quadratic complexity incurred by calling ‘++’ repeatedly. | |||||
2015-07-24 | Add replaceStrings primop | Eelco Dolstra | 1 | -0/+17 | |
This is a generalisation of replaceChars in Nixpkgs. | |||||
2015-07-23 | Add primops all and any | Eelco Dolstra | 1 | -0/+22 | |
These are used thousands of times during NixOS evaluation, so it's useful to speed them up. | |||||
2015-07-23 | Add foldl' primop | Eelco Dolstra | 1 | -0/+13 | |
2015-07-07 | extended args@ explanation | Joachim Schiele | 1 | -4/+10 | |
2015-06-01 | Document tarball downloading | Eelco Dolstra | 1 | -0/+39 | |
2015-02-19 | Allow the leading component of a path to be a ~ | Shea Levy | 1 | -1/+8 | |
2015-02-17 | Use $<attr>Path instead of $<attr> for passAsFile | Eelco Dolstra | 1 | -5/+11 | |
2015-02-17 | Allow passing attributes via files instead of environment variables | Eelco Dolstra | 1 | -0/+21 | |
Closes #473. | |||||
2015-02-17 | Keep sorted | Eelco Dolstra | 1 | -27/+27 | |
2015-01-08 | Fix typo (assuming this is a typo) | Данило Глинський (Danylo Hlynskyi) | 1 | -1/+1 | |
Fix typo (assuming this is a typo) `allowedRequisites` mentions `allowedReferences` in code example | |||||
2014-12-14 | Add section on SSH substituter | Eelco Dolstra | 1 | -2/+2 | |
2014-12-14 | Delete the stdenv section | Eelco Dolstra | 7 | -105/+21 | |
It's outdated and better covered in the Nixpkgs manual. | |||||
2014-11-15 | Document functors | Shea Levy | 1 | -0/+18 | |
2014-10-29 | Document some primops | Eelco Dolstra | 1 | -12/+52 | |
2014-09-23 | manual: add a note that lists are strict in length | Vladimír Čunát | 1 | -1/+4 | |
Close #345. | |||||
2014-09-16 | Tweak some chapter titles | Eelco Dolstra | 1 | -1/+1 | |
2014-09-16 | Merge branch 'master' of github.com:thatdocslady/nix | Eelco Dolstra | 18 | -0/+3062 | |
Conflicts: doc/manual/release-notes.xml doc/manual/writing-nix-expressions.xml | |||||
2014-08-27 | Restructuring the Nix manual | Mikey Ariel | 18 | -0/+3043 | |