Standardise flake-utils input name
This commit is contained in:
parent
f93062025f
commit
c5efaa6024
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue