diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-06-03 15:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 15:36:43 +0200 |
commit | 412684f9dca4e6b8100c3c5e95bb92514d96fa57 (patch) | |
tree | f04f212c0384085d508f30ea05839ef752e6b6c3 /doc/flakes | |
parent | 507c150034256117cd56e31944feedb8f2f3ff3e (diff) | |
parent | d9a6a75ed28c590dde2dba846e356cbcda38d977 (diff) |
Merge pull request #2914 from CSVdB/finegrainedEpochs
Made epochs more fine-grained
Diffstat (limited to 'doc/flakes')
-rw-r--r-- | doc/flakes/design.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/flakes/design.md b/doc/flakes/design.md index 4f6524f83..63198e577 100644 --- a/doc/flakes/design.md +++ b/doc/flakes/design.md @@ -96,7 +96,7 @@ module. # The epoch may be used in the future to determine how Nix # expressions inside this flake are to be parsed. - epoch = 2018; + epoch = 201906; # Some other metadata. description = "A filesystem that fetches DWARF debug info from the Internet on demand"; @@ -164,7 +164,7 @@ Similarly, a minimal `flake.nix` for Nixpkgs: { name = "nixpkgs"; - epoch = 2018; + epoch = 201906; description = "A collection of packages for the Nix package manager"; |