Merge pull request #91133 from saulecabrera/add-asls
asls: init at 0.4.0
This commit is contained in:
commit
1c818b0146
3 changed files with 33 additions and 0 deletions
|
@ -9019,4 +9019,10 @@
|
|||
github = "davegallant";
|
||||
githubId = 4519234;
|
||||
};
|
||||
saulecabrera = {
|
||||
name = "Saúl Cabrera";
|
||||
email = "saulecabrera@gmail.com";
|
||||
github = "saulecabrera";
|
||||
githubId = 1423601;
|
||||
};
|
||||
}
|
||||
|
|
25
pkgs/development/tools/misc/asls/default.nix
Normal file
25
pkgs/development/tools/misc/asls/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv
|
||||
, fetchurl
|
||||
, erlangR22
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "asls";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/saulecabrera/asls/releases/download/v${version}/bin.tar.gz";
|
||||
sha256 = "0zy89fvdhk2bj41fzx349gi8237ww96s21hlg6blqmfhvfxsnszg";
|
||||
};
|
||||
|
||||
buildInputs = [ erlangR22 ];
|
||||
installPhase = "install -Dm755 -t $out/bin asls";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "AssemblyScript Language Server";
|
||||
homepage = "https://github.com/saulecabrera/asls";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ saulecabrera ];
|
||||
};
|
||||
}
|
|
@ -738,6 +738,8 @@ in
|
|||
|
||||
asciiquarium = callPackage ../applications/misc/asciiquarium {};
|
||||
|
||||
asls = callPackage ../development/tools/misc/asls { };
|
||||
|
||||
asymptote = callPackage ../tools/graphics/asymptote {
|
||||
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super texinfo; };
|
||||
gsl = gsl_1;
|
||||
|
|
Loading…
Reference in a new issue