diff --git a/doc/manual/builtins.xml b/doc/manual/builtins.xml index 9f5f4438ce..b75f58e21f 100644 --- a/doc/manual/builtins.xml +++ b/doc/manual/builtins.xml @@ -302,6 +302,18 @@ stdenv.mkDerivation { + builtins.hashString + type s + + Return a base-16 representation of the + cryptographic hash of string s. The + hash algorithm specified by type must + be one of "md5", "sha1" or + "sha256". + + + + builtins.head list diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index e7e9bf3c5b..6f81e7223e 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -6,6 +6,20 @@ + + +
Release 1.4 (TBA) + + + + New built-in function: + builtins.hashString. + + + +
+ +
Release 1.3 (January 4, 2013)