mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchurl,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "nadesiko3";
|
|
version = "3.6.22";
|
|
|
|
src = fetchurl {
|
|
url = "https://registry.npmjs.org/nadesiko3/-/nadesiko3-${version}.tgz";
|
|
hash = "sha256-0I1FBs+4Za1n+E49R58NS8XZM1/JD1I7/QGHXpl39qM=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-odGCIHp+qr7S3BBam0yFIRzZr4RzrrtwhgydLVyRPuE=";
|
|
|
|
postPatch = ''
|
|
ln -s ${../assets/nadesiko3-package-lock.json} package-lock.json
|
|
'';
|
|
|
|
dontNpmBuild = true;
|
|
|
|
passthru.updateScript = # fish
|
|
''
|
|
set VERSION $(npm view nadesiko3 version)
|
|
and set TARBALL "nadesiko3-$VERSION.tgz"
|
|
and set URL "https://registry.npmjs.org/nadesiko3/-/$TARBALL"
|
|
and set HASH $(nix hash convert --to sri sha256:$(nix-prefetch-url "$URL"))
|
|
|
|
and xh -d "$URL"
|
|
and tar xf "$TARBALL" --strip-components=1 package/package.json
|
|
and npm install --package-lock-only --ignore-scripts
|
|
and set NPM_HASH $(nix run nixpkgs#prefetch-npm-deps package-lock.json)
|
|
|
|
and sd -n 1 'version = "[^"]*"' "version = \"$VERSION\"" ./packages/nadesiko3.nix
|
|
and sd -n 1 'hash = "[^"]*"' "hash = \"$HASH\"" ./packages/nadesiko3.nix
|
|
and sd -n 1 'npmDepsHash = "[^"]*"' "npmDepsHash = \"$NPM_HASH\"" ./packages/nadesiko3.nix
|
|
|
|
and mv package-lock.json ./assets/nadesiko3-package-lock.json
|
|
|
|
and rm package.json
|
|
and rm nadesiko3-*.tgz
|
|
'';
|
|
|
|
meta = {
|
|
description = "Japanese Programming Language Nadesiko v3 (JavaScript/TypeScript)";
|
|
homepage = "https://nadesi.com";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "cnako3";
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
};
|
|
}
|