Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-03 | document that writeTextFile from Nixpkgs is an alternative to builtins.toFile | Justin Humm | |
2018-03-23 | Document fetchGit. | Shea Levy | |
Fixes #1981. | |||
2018-02-14 | Add splitVersion primop. | Shea Levy | |
Fixes #1868. | |||
2018-02-06 | Add path primop. | Shea Levy | |
builtins.path allows specifying the name of a path (which makes paths with store-illegal names now addable), allows adding paths with flat instead of recursive hashes, allows specifying a filter (so is a generalization of filterSource), and allows specifying an expected hash (enabling safe path adding in pure mode). | |||
2017-12-11 | Add builtins.concatStringSep to the manual | Chris Martin | |
2017-11-01 | Mention isFloat function in "Built-in Functions" section | Zoran Plesivčak | |
2017-11-01 | Mention "float" type in builtins.typeOf section of the docs | Zoran Plesivčak | |
+ remove trailing whitespace from the file | |||
2017-08-16 | Merge branch 'tokenize' of https://github.com/nbp/nix | Eelco Dolstra | |
2017-08-15 | Add builtins.string function. | Nicolas B. Pierron | |
The function 'builtins.split' takes a POSIX extended regular expression and an arbitrary string. It returns a list of non-matching substring interleaved by lists of matched groups of the regular expression. ```nix with builtins; assert split "(a)b" "abc" == [ "" [ "a" ] "c" ]; assert split "([ac])" "abc" == [ "" [ "a" ] "b" [ "c" ] "" ]; assert split "(a)|(c)" "abc" == [ "" [ "a" null ] "b" [ null "c" ] "" ]; assert split "([[:upper:]]+)" " FOO " == [ " " [ "FOO" ] " " ]; ``` | |||
2017-08-15 | Move builtins.match documentation between map and mul. | Nicolas B. Pierron | |
2017-07-15 | use sha256 hashes in the examples | Harmen | |
And fix a dead link. | |||
2017-05-28 | Remove stray `>` in builtins doc | Pyry Jahkola | |
2017-05-24 | Merge pull request #1382 from FRidh/patch-1 | Eelco Dolstra | |
Document fetchTarball can take a sha256 | |||
2017-05-17 | Document that builtins.match takes a POSIX extended RE | Eelco Dolstra | |
2017-05-11 | Document fetchTarball can take a sha256 | Frederik Rietdijk | |
Note that I refer to `nix-prefetch-url`. | |||
2017-05-10 | Typo | Eelco Dolstra | |
2017-05-10 | doc: builtins.attrNames returns alphabetically sorted list | Domen Kožar | |
2017-04-17 | Manual: document tryEval | Linus Heckemann | |
2017-02-21 | Fix XML validity | Eelco Dolstra | |
2017-02-20 | Document toString better | Linus Heckemann | |
2016-12-09 | Document builtins.match, fixes #1145 | Domen Kožar | |
2016-09-21 | Document the { __toString } interface | zimbatm | |
2016-08-11 | doc: add an example for builtins.substring | Domen Kožar | |
2016-08-10 | s/powerpc-darwin/x86_64-darwin/ | Domen Kožar | |
Let's step in line with time and document more realistic values. | |||
2016-02-12 | Merge pull request #762 from ctheune/ctheune-floats | Eelco Dolstra | |
Implement floats | |||
2016-01-06 | Update documentation for floats. | Christian Theune | |
2016-01-05 | manual: document builtins.functionArgs | Vladimír Čunát | |
The text is just a conversion of comment from src/libexpr/primops.cc | |||
2015-09-01 | Fix readDir example | Eelco Dolstra | |
Fixes https://github.com/NixOS/nixos-homepage/issues/46. | |||
2015-07-28 | Add sort primop | Eelco Dolstra | |
2015-07-28 | Add primop genList | Eelco Dolstra | |
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 | |
This is a generalisation of replaceChars in Nixpkgs. | |||
2015-07-23 | Add primops all and any | Eelco Dolstra | |
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 | |
2015-06-01 | Document tarball downloading | Eelco Dolstra | |
2014-10-29 | Document some primops | Eelco Dolstra | |
2014-08-27 | Restructuring the Nix manual | Mikey Ariel | |