about summary refs log tree commit diff
path: root/doc/manual/expressions (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-03-24 Add isPath primopzimbatm1-0/+8
this is added for completeness' sake since all the other possible `builtins.typeOf` results have a corresponding `builtins.is<Type>`
2019-03-21 manual: include builtins.* for globally available builtinsLinus Heckemann1-0/+17
This improves searchability.
2019-03-01 manual nitpick: document sha512 support in hashStringVladimír Čunát1-2/+2
2018-11-13 manual: quote $servletsFelix C. Stegerman1-1/+1
2018-11-12 fix typo (s/gift/git/)Felix C. Stegerman1-2/+2
2018-11-09 Manual: build locally -> buildEelco Dolstra1-2/+1
2018-11-08 Fix manual buildLinus Heckemann1-1/+1
This was broken by some missing closing tags in 0bea4a50e03
2018-11-08 Merge pull request #2524 from domenkozar/deprecate-toPathEelco Dolstra1-23/+6
Deprecate builtins.toPath
2018-11-08 Deprecate builtins.toPathDomen Kožar1-23/+6
2018-11-07 Document allowSubstitutesEelco Dolstra1-0/+14
2018-11-07 Fix preferLocalBuild descriptionEelco Dolstra1-3/+1
preferLocalBuild does not in fact prevent substitution.
2018-10-04 Docs: update fixed output hashesBenjamin Hipple1-7/+7
`fetchurl` will now throw if given an `md5`, and the hashes have generally been upgraded to avoid it and use `sha256` as a default. This updates the documentation examples in the manual accordingly.
2018-10-02 manual: add XML IDs to all builtin list entriesProfpatsch1-147/+217
2018-09-01 Merge pull request #2309 from symphorien/disallowed-manEelco Dolstra1-0/+34
add manual entries for disallowedRequisites and disallowedReferences
2018-09-01 Merge pull request #2384 from graham-at-target/fetch-git-examplesEelco Dolstra1-2/+80
docs: Add some examples to fetchGit
2018-08-31 Drop ssh://... as a required formatting for builtins.fetchGitGraham Christensen1-8/+1
2018-08-31 docs: Add IDs to important sectionsGraham Christensen1-1/+1
2018-08-31 docs: Add some examples to fetchGitGraham Christensen1-2/+87
2018-07-26 add manual entries for disallowedRequisites and disallowedReferencesSymphorien Gibol1-0/+34
2018-06-10 manual: builtins.fromJSON: remove the claim that floats are not allowedMichael Raskin1-2/+1
floating-point numbers are supported now, including the fromJSON builtin. Reported on IRC by inquisitiv3
2018-05-30 Explicitly describe the effects of filterSource excluding a directory.Shea Levy1-1/+3
2018-05-30 Merge pull request #2164 from mickours/doc-fetchTarball-timoutGraham Christensen1-1/+10
Explain fetchTarball timeout behavior in the doc
2018-05-30 Explain fetchTarball timeout behavior in the docMichael Mercier1-1/+10
2018-05-24 add docs and testsvolth1-0/+30
2018-05-02 docs: mention source of env variables used by `impureEnvVars`.Gleb Peregud1-1/+7
2018-04-03 document that writeTextFile from Nixpkgs is an alternative to builtins.toFileJustin Humm1-1/+4
2018-03-23 Document fetchGit.Shea Levy1-0/+55
Fixes #1981.
2018-02-14 Add splitVersion primop.Shea Levy1-0/+11
Fixes #1868.
2018-02-07 Merge pull request #1816 from shlevy/add-pathEelco Dolstra1-2/+72
Add path primop.
2018-02-06 Add path primop.Shea Levy1-2/+72
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).
2018-01-31 Manual: Remove old cruftEelco Dolstra2-36/+0
2018-01-27 Improve manual on inheriting attributesEric Wolf1-2/+30
Expands first paragraph a bit Adds a more comprehensive example
2017-12-11 Add builtins.concatStringSep to the manualChris Martin1-0/+8
2017-11-01 Mention isFloat function in "Built-in Functions" sectionZoran Plesivčak1-0/+10
2017-11-01 Mention "float" type in builtins.typeOf section of the docsZoran Plesivčak1-8/+9
+ remove trailing whitespace from the file
2017-10-26 Clarify indented string escaping rulesOrivej Desh1-5/+9
2017-10-26 Describe "with" scoping precedenceOrivej Desh1-1/+14
2017-10-26 Describe arithmetic operatorsOrivej Desh1-9/+31
2017-08-18 update MD5 to SHA-256 in expression-syntaxChase Adams1-2/+2
2017-08-16 Merge branch 'tokenize' of https://github.com/nbp/nixEelco Dolstra1-0/+37
2017-08-15 Add builtins.string function.Nicolas B. Pierron1-0/+37
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. Pierron1-36/+36
2017-07-15 use sha256 hashes in the examplesHarmen3-5/+5
And fix a dead link.
2017-05-29 Merge pull request #1393 from pyrtsa/patch-1Eelco Dolstra1-1/+1
Fix variable name typo in derivations doc
2017-05-28 Remove stray `>` in builtins docPyry Jahkola1-1/+1
2017-05-28 Fix variable name typo in derivations docPyry Jahkola1-1/+1
2017-05-24 Merge pull request #1382 from FRidh/patch-1Eelco Dolstra1-0/+18
Document fetchTarball can take a sha256
2017-05-17 Document that builtins.match takes a POSIX extended REEelco Dolstra1-4/+10
2017-05-11 Document fetchTarball can take a sha256Frederik Rietdijk1-0/+18
Note that I refer to `nix-prefetch-url`.
2017-05-10 TypoEelco Dolstra1-1/+1