From cd9a5da85217c63ea7b28cbf635d29fc8a680b1a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 24 Sep 2025 12:28:40 +0300 Subject: [PATCH] flake: add ndg as an input Signed-off-by: NotAShelf Change-Id: I6a6a6964151352d958f0c64949769d98dd759bdc --- flake.lock | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++- flake.nix | 3 ++ 2 files changed, 89 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index 9528e9b7..e3bf262f 100644 --- a/flake.lock +++ b/flake.lock @@ -16,6 +16,21 @@ "url": "https://git.lix.systems/lix-project/flake-compat.git" } }, + "flake-compat_2": { + "locked": { + "lastModified": 1747046372, + "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-parts": { "inputs": { "nixpkgs-lib": [ @@ -36,6 +51,24 @@ "type": "github" } }, + "flake-parts_2": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib" + }, + "locked": { + "lastModified": 1756770412, + "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "4524271976b625a4a605beefd893f270620fd751", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, "mnw": { "locked": { "lastModified": 1756659871, @@ -51,7 +84,58 @@ "type": "github" } }, + "ndg": { + "inputs": { + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts_2", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1758451644, + "narHash": "sha256-sP4hBXifUIrEk37N+NRp3p42Os4OahX/8w1CN74nig8=", + "owner": "feel-co", + "repo": "ndg", + "rev": "a7c8f6ca855335c4dff4826a0245ee93e1816b70", + "type": "github" + }, + "original": { + "owner": "feel-co", + "repo": "ndg", + "type": "github" + } + }, "nixpkgs": { + "locked": { + "lastModified": 1757745802, + "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "c23193b943c6c689d70ee98ce3128239ed9e32d1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib": { + "locked": { + "lastModified": 1754788789, + "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", + "owner": "nix-community", + "repo": "nixpkgs.lib", + "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nixpkgs.lib", + "type": "github" + } + }, + "nixpkgs_2": { "locked": { "lastModified": 1756696532, "narHash": "sha256-6FWagzm0b7I/IGigOv9pr6LL7NQ86mextfE8g8Q6HBg=", @@ -72,7 +156,8 @@ "flake-compat": "flake-compat", "flake-parts": "flake-parts", "mnw": "mnw", - "nixpkgs": "nixpkgs", + "ndg": "ndg", + "nixpkgs": "nixpkgs_2", "systems": "systems" } }, diff --git a/flake.nix b/flake.nix index 35820e0b..31e8d0f1 100644 --- a/flake.nix +++ b/flake.nix @@ -105,5 +105,8 @@ # Alternate neovim-wrapper mnw.url = "github:Gerg-L/mnw"; + + # Alternative documentation generator + ndg.url = "github:feel-co/ndg"; }; }