mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
commit
520e52af9f
@ -1,25 +0,0 @@
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, erlangR22
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "asls";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/saulecabrera/asls/releases/download/v${version}/bin.tar.gz";
|
||||
sha256 = "05kp44p4q4sdykfw0b4k9j3qdp0qvwgjbs48ncmnd0ass0xrmi3s";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ erlangR22 ];
|
||||
installPhase = "install -Dm755 -t $out/bin asls";
|
||||
|
||||
meta = with lib; {
|
||||
description = "AssemblyScript Language Server";
|
||||
homepage = "https://github.com/saulecabrera/asls";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ saulecabrera ];
|
||||
};
|
||||
}
|
@ -91,6 +91,7 @@ mapAliases ({
|
||||
arduino_core = throw "'arduino_core' has been renamed to/replaced by 'arduino-core'"; # Converted to throw 2022-02-22
|
||||
arora = throw "arora has been removed"; # Added 2020-09-09
|
||||
asciidocFull = throw "'asciidocFull' has been renamed to/replaced by 'asciidoc-full'"; # Converted to throw 2022-02-22
|
||||
asls = throw "asls has been removed: abandoned by upstream"; # Added 2023-03-16
|
||||
asterisk_13 = throw "asterisk_13: Asterisk 13 is end of life and has been removed"; # Added 2022-04-06
|
||||
asterisk_15 = throw "asterisk_15: Asterisk 15 is end of life and has been removed"; # Added 2020-10-07
|
||||
asterisk_17 = throw "asterisk_17: Asterisk 17 is end of life and has been removed"; # Added 2022-04-06
|
||||
|
@ -2789,8 +2789,6 @@ with pkgs;
|
||||
|
||||
ashpd-demo = callPackage ../development/tools/ashpd-demo { };
|
||||
|
||||
asls = callPackage ../development/tools/misc/asls { };
|
||||
|
||||
astc-encoder = callPackage ../tools/graphics/astc-encoder { };
|
||||
|
||||
asymptote = callPackage ../tools/graphics/asymptote {
|
||||
|
Loading…
Reference in New Issue
Block a user