taskbook: init at 0.3.0

This commit is contained in:
SkohTV
2025-07-31 23:44:16 +02:00
committed by SkohTV
parent 26a29d17c0
commit 6b5ef122d0
2 changed files with 8342 additions and 0 deletions

8308
pkgs/by-name/ta/taskbook/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,34 @@
{
buildNpmPackage,
fetchFromGitHub,
lib,
}:
buildNpmPackage (finalAttrs: {
pname = "taskbook";
version = "0.3.0";
src = fetchFromGitHub {
owner = "klaudiosinani";
repo = "taskbook";
tag = "v${finalAttrs.version}";
hash = "sha256-LL9v7uRYbthK0riN6DKannABlhNWaG880Yp8egmwBJ4=";
};
dontNpmBuild = true;
dontNpmPrune = true;
npmDepsHash = "sha256-yri0sDDqek3HwLjPE0C43VRfemi5NCDLSZ3FJ8bwmdg=";
postPatch = ''
cp ${./package-lock.json} package-lock.json
'';
meta = {
description = "Tasks, boards & notes for the command-line habitat";
homepage = "https://github.com/klaudiosinani/taskbook";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ skohtv ];
mainProgram = "tb";
};
})