Manual: When building from the channel, link to the exact Git revision

This commit is contained in:
Eelco Dolstra
2013-10-24 02:03:10 +02:00
parent c4149c7b56
commit d49f141a79
6 changed files with 11 additions and 17 deletions
+2 -2
View File
@@ -1,14 +1,14 @@
# General list operations.
let
inherit (import ./trivial.nix) deepSeq;
inc = builtins.add 1;
dec = n: builtins.sub n 1;
inherit (builtins) elemAt;
in rec {
inherit (builtins) head tail length isList add sub lessThan;
inherit (builtins) head tail length isList add sub lessThan elemAt;
# Create a list consisting of a single element. `singleton x' is