erlang: remove r16-basho

authored by Thomas Depierre and committed by Yt fb9aa8ce a0aea1e6

+1 -75
-65
pkgs/development/interpreters/erlang/R16B02-basho.nix
··· 1 - { pkgs, mkDerivation }: 2 - 3 - mkDerivation { 4 - baseName = "erlang"; 5 - version = "16B02.basho10"; 6 - 7 - src = pkgs.fetchFromGitHub { 8 - owner = "basho"; 9 - repo = "otp"; 10 - rev = "OTP_R16B02_basho10"; 11 - sha256 = "1s2c3ag9dnp6xmcr27kh95n1w50xly97n1mp8ivc2a3gpv4blqmj"; 12 - }; 13 - 14 - preConfigure = '' 15 - export HOME=$PWD/../ 16 - export LANG=C 17 - export ERL_TOP=$(pwd) 18 - sed -e s@/bin/pwd@pwd@g -i otp_build 19 - sed -e s@"/usr/bin/env escript"@$(pwd)/bootstrap/bin/escript@g -i lib/diameter/bin/diameterc 20 - 21 - ./otp_build autoconf 22 - ''; 23 - 24 - enableHipe = false; 25 - 26 - # Do not install docs, instead use prebuilt versions. 27 - installTargets = "install"; 28 - postInstall = let 29 - manpages = pkgs.fetchurl { 30 - url = "https://www.erlang.org/download/otp_doc_man_R16B02.tar.gz"; 31 - sha256 = "12apxjmmd591y9g9bhr97z5jbd1jarqg7wj0y2sqhl21hc1yp75p"; 32 - }; 33 - in '' 34 - sed -e s@$(pwd)/bootstrap/bin/escript@$out/bin/escript@g -i $out/lib/erlang/lib/diameter-1.4.3/bin/diameterc 35 - 36 - tar xf "${manpages}" -C "$out/lib/erlang" 37 - for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do 38 - prefix="''${i%/*}" 39 - mkdir -p "$out/share/man/''${prefix##*/}" 40 - ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl" 41 - done 42 - ''; 43 - 44 - meta = { 45 - homepage = "https://github.com/basho/otp/"; 46 - description = "Programming language used for massively scalable soft real-time systems, Basho fork"; 47 - 48 - longDescription = '' 49 - Erlang is a programming language used to build massively scalable 50 - soft real-time systems with requirements on high availability. 51 - Some of its uses are in telecoms, banking, e-commerce, computer 52 - telephony and instant messaging. Erlang's runtime system has 53 - built-in support for concurrency, distribution and fault 54 - tolerance. 55 - This version of Erlang is Basho's version, forked from Ericsson's 56 - repository. 57 - ''; 58 - 59 - knownVulnerabilities = [ "CVE-2017-1000385" ]; 60 - 61 - platforms = ["x86_64-linux" "x86_64-darwin"]; 62 - license = pkgs.lib.licenses.asl20; 63 - maintainers = with pkgs.lib.maintainers; [ mdaiter ]; 64 - }; 65 - }
+1 -1
pkgs/top-level/all-packages.nix
··· 14422 14422 14423 14423 inherit (beam.interpreters) 14424 14424 erlang erlangR25 erlangR24 erlangR23 erlangR22 erlangR21 14425 - erlang_odbc erlang_javac erlang_odbc_javac erlang_basho_R16B02 14425 + erlang_odbc erlang_javac erlang_odbc_javac 14426 14426 elixir elixir_1_13 elixir_1_12 elixir_1_11 elixir_1_10 elixir_1_9 14427 14427 elixir_ls; 14428 14428
-9
pkgs/top-level/beam-packages.nix
··· 92 92 odbcSupport = true; 93 93 }; 94 94 95 - # Basho fork, using custom builder. 96 - erlang_basho_R16B02 = 97 - lib.callErlang ../development/interpreters/erlang/R16B02-basho.nix { 98 - autoconf = buildPackages.autoconf269; 99 - inherit wxSupport; 100 - }; 101 - erlang_basho_R16B02_odbc = 102 - erlang_basho_R16B02.override { odbcSupport = true; }; 103 - 104 95 # Other Beam languages. These are built with `beam.interpreters.erlang`. To 105 96 # access for example elixir built with different version of Erlang, use 106 97 # `beam.packages.erlangR24.elixir`.