From 3e20ca84a25457d1260beea533af14c16a6a083d Mon Sep 17 00:00:00 2001 From: benton Date: Wed, 21 Jul 2021 17:37:35 -0500 Subject: [PATCH] flake inputs' nixpkgs are synced --- README.md | 1 - flake.lock | 42 +++++++----------------------------------- flake.nix | 13 ++++++++++--- 3 files changed, 17 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 1c0096b..4ff9c85 100644 --- a/README.md +++ b/README.md @@ -47,4 +47,3 @@ The name comes from [the D&D 5e spell](https://roll20.net/compendium/dnd5e/Knock > **Duration**: Instantaneous\ > **Classes**: Bard, Sorcerer, Wizard\ > Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object. - diff --git a/flake.lock b/flake.lock index 2d09941..36bd33a 100644 --- a/flake.lock +++ b/flake.lock @@ -2,7 +2,9 @@ "nodes": { "inept-epub": { "inputs": { - "nixpkgs": "nixpkgs" + "nixpkgs": [ + "nixpkgs" + ] }, "locked": { "lastModified": 1626630204, @@ -20,7 +22,9 @@ }, "libgourou-utils": { "inputs": { - "nixpkgs": "nixpkgs_2" + "nixpkgs": [ + "nixpkgs" + ] }, "locked": { "lastModified": 1626630231, @@ -52,43 +56,11 @@ "type": "github" } }, - "nixpkgs_2": { - "locked": { - "lastModified": 1626464457, - "narHash": "sha256-u2PCh/+8vQSLwf0mPpKHKQ8hAPB3l4uNZR3r0TdK2Lg=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_3": { - "locked": { - "lastModified": 1626464457, - "narHash": "sha256-u2PCh/+8vQSLwf0mPpKHKQ8hAPB3l4uNZR3r0TdK2Lg=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, "root": { "inputs": { "inept-epub": "inept-epub", "libgourou-utils": "libgourou-utils", - "nixpkgs": "nixpkgs_3" + "nixpkgs": "nixpkgs" } } }, diff --git a/flake.nix b/flake.nix index 81838c2..8ed69a3 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,14 @@ { - inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; - inputs.libgourou-utils.url = github:BentonEdmondson/libgourou-utils; - inputs.inept-epub.url = github:BentonEdmondson/inept-epub; + inputs = { + + nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; + + libgourou-utils.url = github:BentonEdmondson/libgourou-utils; + libgourou-utils.inputs.nixpkgs.follows = "nixpkgs"; + + inept-epub.url = github:BentonEdmondson/inept-epub; + inept-epub.inputs.nixpkgs.follows = "nixpkgs"; + }; outputs = { self, ... }@flakes: let nixpkgs = flakes.nixpkgs.legacyPackages.x86_64-linux;