diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-04-10 10:24:09 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-04-10 10:24:09 +0200 |
commit | e5ea01c1a8bbd328dcc576928bf3e4271cb55399 (patch) | |
tree | 988accdc0e9ad763ea6b3c24df12154a286e1a55 /flake.nix | |
parent | 3aaceeb7e2d3fb8a07a1aa5a21df1dca6bbaa0ef (diff) |
Remove flake 'edition' field
Future editions of flakes or the Nix language can be supported by
renaming flake.nix (e.g. flake-v2.nix). This avoids a bootstrap
problem where we don't know which grammar to use to parse
flake*.nix. It also allows a project to support multiple flake
editions, in theory.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ { description = "The purely functional package manager"; - edition = 201909; + edition = 201909; # FIXME: remove inputs.nixpkgs.uri = "nixpkgs/nixos-20.03-small"; |