packages: Add nadesiko3

Adds the Japanese programming language なでしこ. Note that an upstream
lockfile would be ideal before merging the PR in nixpkgs.
This commit is contained in:
Donovan Glover 2024-07-07 18:51:55 -04:00
parent a9d96a06d9
commit c9b79ccfb2
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 14255 additions and 0 deletions

14225
assets/nadesiko3-package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

30
packages/nadesiko3.nix Normal file
View File

@ -0,0 +1,30 @@
{ lib
, buildNpmPackage
, fetchurl
}:
buildNpmPackage rec {
pname = "nadesiko3";
version = "3.6.7";
src = fetchurl {
url = "https://registry.npmjs.org/nadesiko3/-/nadesiko3-${version}.tgz";
hash = "sha256-Y9kJErYwFgGCpL5uhXKOUmpheI2cwC4Rt5uHqoFIhTc=";
};
npmDepsHash = "sha256-9HGoX+0xzw6ukrR4umCU+Gk9InmKgJ2CztASgD2kXdo=";
postPatch = ''
ln -s ${../assets/nadesiko3-package-lock.json} package-lock.json
'';
dontNpmBuild = true;
meta = {
description = "Japanese Programming Language Nadesiko v3 (JavaScript/TypeScript)";
homepage = "https://nadesi.com";
license = lib.licenses.mit;
mainProgram = "cnako3";
maintainers = with lib.maintainers; [ donovanglover ];
};
}