mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #216888 from lucperkins/add-assemblyscript
assemblyscript: init at 0.27.5
This commit is contained in:
commit
4114a9167a
2 changed files with 27 additions and 0 deletions
25
pkgs/development/compilers/assemblyscript/default.nix
Normal file
25
pkgs/development/compilers/assemblyscript/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "assemblyscript";
|
||||
version = "0.27.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AssemblyScript";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-3dWIYkiAA61xbUXJGmb/amjHmyXYoy16lLIAZR4sD5k=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/AssemblyScript/${pname}";
|
||||
description = "A TypeScript-like language for WebAssembly";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ lucperkins ];
|
||||
};
|
||||
}
|
|
@ -306,6 +306,8 @@ with pkgs;
|
|||
|
||||
asn1c = callPackage ../development/compilers/asn1c { };
|
||||
|
||||
assemblyscript = callPackage ../development/compilers/assemblyscript { };
|
||||
|
||||
authy = callPackage ../applications/misc/authy { };
|
||||
|
||||
authz0 = callPackage ../tools/security/authz0 { };
|
||||
|
|
Loading…
Reference in a new issue