From c82334aae1cd944ea2dfc7760a2fba53c9b982ab Mon Sep 17 00:00:00 2001 From: Nathan van Doorn Date: Fri, 13 Oct 2023 19:03:00 +0200 Subject: [PATCH] Notice that flake-utils is in the flakes registry --- flake.lock | 39 +++++++++++++++++++-------------------- flake.nix | 5 ++--- 2 files changed, 21 insertions(+), 23 deletions(-) diff --git a/flake.lock b/flake.lock index 88e88e5..8a5b4ad 100644 --- a/flake.lock +++ b/flake.lock @@ -1,5 +1,22 @@ { "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", + "type": "github" + }, + "original": { + "id": "flake-utils", + "type": "indirect" + } + }, "nixpkgs": { "locked": { "lastModified": 1694499547, @@ -15,8 +32,8 @@ }, "root": { "inputs": { - "nixpkgs": "nixpkgs", - "utils": "utils" + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" } }, "systems": { @@ -33,24 +50,6 @@ "repo": "default", "type": "github" } - }, - "utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1694529238, - "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 080e53d..93babf1 100644 --- a/flake.nix +++ b/flake.nix @@ -1,13 +1,12 @@ { description = "AJA video card software"; - inputs.utils.url = "github:numtide/flake-utils"; outputs = { self, nixpkgs, - utils, + flake-utils, }: ( - utils.lib.eachSystem ["x86_64-linux"] (system: let + flake-utils.lib.eachSystem ["x86_64-linux"] (system: let pkgs = import nixpkgs { inherit system; };