From c5efaa60244f111b2aeee5fbcc3b9c2ef63a1e00 Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Sun, 19 Jun 2022 15:20:05 +0100 Subject: [PATCH] Standardise flake-utils input name --- go/flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go/flake.nix b/go/flake.nix index 95c76d5..9462954 100644 --- a/go/flake.nix +++ b/go/flake.nix @@ -1,14 +1,14 @@ { description = "Another cool golang abhorration from samw"; - inputs.flake-utils.url = "github:numtide/flake-utils"; + inputs.utils.url = "github:numtide/flake-utils"; inputs.devshell = { url = "github:numtide/devshell"; inputs.flake-utils.follows = "flake-utils"; }; - outputs = { self, nixpkgs, flake-utils, devshell }: - flake-utils.lib.eachDefaultSystem (system: + outputs = { self, nixpkgs, utils, devshell }: + utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system;