remove deprecated flake edition

This commit is contained in:
zimbatm 2020-05-30 00:38:23 +02:00
parent 18a33a4d44
commit 4fbce19a7a
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7
2 changed files with 1 additions and 5 deletions

View File

@ -1,10 +1,7 @@
{
description = "Flake utils demo";
edition = 201909;
inputs.utils = {
uri = "github:numtide/flake-utils";
};
inputs.utils.uri = "github:numtide/flake-utils";
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:

View File

@ -1,6 +1,5 @@
{
description = "Pure Nix flake utility functions";
edition = 201909;
outputs = { self }: {
lib = import ./.;
};