diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2022-11-13 20:37:34 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2022-11-13 20:37:34 +0100 |
| commit | 76d34cdb5dc35d10badfe88769ba4987e22fc40b (patch) | |
| tree | b55fddbe694d8e7ba7caa7779ebeef49a2cfd495 | |
| parent | 122631538f9446b8a99c217672f3835ff2e06a5e (diff) | |
data: synchronize inputs
| -rw-r--r-- | flake.lock | 37 | ||||
| -rw-r--r-- | flake.nix | 8 |
2 files changed, 11 insertions, 34 deletions
@@ -2,8 +2,8 @@ "nodes": { "data": { "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" + "flake-utils": [], + "nixpkgs": [] }, "locked": { "lastModified": 1668340813, @@ -34,21 +34,6 @@ "type": "github" } }, - "flake-utils_2": { - "locked": { - "lastModified": 1667395993, - "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1668231603, @@ -63,25 +48,11 @@ "type": "indirect" } }, - "nixpkgs_2": { - "locked": { - "lastModified": 1668231603, - "narHash": "sha256-/4br947zgRqABb52iLF4DCHgD49Fw5aQ6/IdTwaM95E=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "d8f2c4d846a2e65ad3f5a5e842b672f0b81588a2", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "type": "indirect" - } - }, "root": { "inputs": { "data": "data", - "flake-utils": "flake-utils_2", - "nixpkgs": "nixpkgs_2" + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" } } }, @@ -3,7 +3,13 @@ inputs = { flake-utils.url = "github:numtide/flake-utils"; - data.url = "github:qaristote/info"; + data = { + url = "github:qaristote/info"; + inputs = { + nixpkgs.follows = ""; + flake-utils.follows = ""; + }; + }; }; outputs = { self, nixpkgs, flake-utils, data }: |
