Standardise flake-utils input name

This commit is contained in:
Sam W 2022-06-19 15:20:05 +01:00
parent f93062025f
commit c5efaa6024
1 changed files with 3 additions and 3 deletions

View File

@ -1,14 +1,14 @@
{ {
description = "Another cool golang abhorration from samw"; description = "Another cool golang abhorration from samw";
inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.utils.url = "github:numtide/flake-utils";
inputs.devshell = { inputs.devshell = {
url = "github:numtide/devshell"; url = "github:numtide/devshell";
inputs.flake-utils.follows = "flake-utils"; inputs.flake-utils.follows = "flake-utils";
}; };
outputs = { self, nixpkgs, flake-utils, devshell }: outputs = { self, nixpkgs, utils, devshell }:
flake-utils.lib.eachDefaultSystem (system: utils.lib.eachDefaultSystem (system:
let let
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;