erlang support: remove broken buildErlang function

The buildErlang function is broken and and leads Engineers down a wrong
path. For vanilla erlang that doesn't user rebar3, its better to simply
use `stdenv.mkDerivation` along with a set setupHook then the existing
functionality.
This commit is contained in:
Eric Merritt
2016-01-10 15:16:53 -08:00
parent 10fd4dff99
commit b509dadbf1
2 changed files with 0 additions and 69 deletions

View File

@@ -4,7 +4,6 @@ let
self = rec {
hex = import ./hex-packages.nix { callPackage = self.callPackage; };
callPackage = pkgs.lib.callPackageWith (pkgs // self // hex);
buildErlang = callPackage ./build-erlang.nix {};
buildHex = callPackage ./build-hex.nix {};
};
in self // self.hex