sourcey: init at 3.6.5

This commit is contained in:
Kam
2026-07-22 22:42:58 +10:00
committed by Kam
parent e1a817a38c
commit 54769f3399
+39
View File
@@ -0,0 +1,39 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
buildNpmPackage (finalAttrs: {
pname = "sourcey";
version = "3.6.5";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "sourcey";
repo = "sourcey";
tag = "v${finalAttrs.version}";
hash = "sha256-l1MpeJKGlQfiLCtCNMlG6ZEDYYLTMIy+N9sddDkxKXc=";
};
npmDepsHash = "sha256-Wwa7//iSvBmLCogVqk8aAUX9kn9FZsndvX00JBoXI+0=";
npmDepsFetcherVersion = 2;
makeCacheWritable = true;
npmFlags = [ "--legacy-peer-deps" ];
dontNpmBuild = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Open source documentation platform for OpenAPI specs and markdown";
homepage = "https://sourcey.com";
license = lib.licenses.agpl3Only;
mainProgram = "sourcey";
maintainers = with lib.maintainers; [ auscaster ];
};
})