mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
25 lines
598 B
Nix
25 lines
598 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "assemblyscript";
|
|
version = "0.27.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AssemblyScript";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Jhjq+kLRzDesTPHHonImCnuzt1Ay04n7+O9aK4knb5g=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-mWRQPQVprM+9SCYd8M7NMDtiwDjSH5cr4Xlr5VP9eHo=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/AssemblyScript/${pname}";
|
|
description = "TypeScript-like language for WebAssembly";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lucperkins ];
|
|
};
|
|
}
|