3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/erlang-modules/default.nix
Eric Merritt b509dadbf1 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.
2016-01-14 14:37:21 -08:00

10 lines
267 B
Nix

{ pkgs }: #? import <nixpkgs> {} }:
let
self = rec {
hex = import ./hex-packages.nix { callPackage = self.callPackage; };
callPackage = pkgs.lib.callPackageWith (pkgs // self // hex);
buildHex = callPackage ./build-hex.nix {};
};
in self // self.hex