flake inputs' nixpkgs are synced
This commit is contained in:
parent
48ba3272e3
commit
3e20ca84a2
3 changed files with 17 additions and 39 deletions
|
@ -47,4 +47,3 @@ The name comes from [the D&D 5e spell](https://roll20.net/compendium/dnd5e/Knock
|
||||||
> **Duration**: Instantaneous\
|
> **Duration**: Instantaneous\
|
||||||
> **Classes**: Bard, Sorcerer, Wizard\
|
> **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.
|
> 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.
|
||||||
|
|
||||||
|
|
42
flake.lock
42
flake.lock
|
@ -2,7 +2,9 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"inept-epub": {
|
"inept-epub": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1626630204,
|
"lastModified": 1626630204,
|
||||||
|
@ -20,7 +22,9 @@
|
||||||
},
|
},
|
||||||
"libgourou-utils": {
|
"libgourou-utils": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs_2"
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1626630231,
|
"lastModified": 1626630231,
|
||||||
|
@ -52,43 +56,11 @@
|
||||||
"type": "github"
|
"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": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"inept-epub": "inept-epub",
|
"inept-epub": "inept-epub",
|
||||||
"libgourou-utils": "libgourou-utils",
|
"libgourou-utils": "libgourou-utils",
|
||||||
"nixpkgs": "nixpkgs_3"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
13
flake.nix
13
flake.nix
|
@ -1,7 +1,14 @@
|
||||||
{
|
{
|
||||||
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
|
inputs = {
|
||||||
inputs.libgourou-utils.url = github:BentonEdmondson/libgourou-utils;
|
|
||||||
inputs.inept-epub.url = github:BentonEdmondson/inept-epub;
|
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
|
outputs = { self, ... }@flakes: let
|
||||||
nixpkgs = flakes.nixpkgs.legacyPackages.x86_64-linux;
|
nixpkgs = flakes.nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
|
Loading…
Reference in a new issue