runmd: init at 1.4.1

This commit is contained in:
Pol Dellaiera
2025-04-09 19:37:09 +02:00
parent 05621a94d2
commit 1d020b221e
+31
View File
@@ -0,0 +1,31 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage (finalAttrs: {
pname = "runmd";
version = "1.4.1";
src = fetchFromGitHub {
owner = "broofa";
repo = "runmd";
tag = "v${finalAttrs.version}";
hash = "sha256-NaHBoRp6VuQwobpew7b1us8t2vbVPR4OLe3p3suykOw=";
};
npmDepsHash = "sha256-0djcoEq1O6zubD8OTFNE0BrOebSiw4JAXxa6flbHLb0=";
dontNpmBuild = true;
meta = {
description = "Executable markdown files";
homepage = "https://github.com/broofa/runmd";
changelog = "https://github.com/broofa/runmd/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "runmd";
platforms = lib.platforms.all;
};
})