erlang support: Add 187 packages pulled from Hex

This commit adds 187 packages from Hex.pm and documents 100 more that
could not be imported for various reasons. The packages where generated
by hex2nix.
This commit is contained in:
Eric Merritt
2016-01-09 15:42:28 -08:00
parent d541d0e640
commit b1719f9fcc
3 changed files with 3798 additions and 64 deletions

View File

@@ -1,8 +1,8 @@
{ pkgs }: #? import <nixpkgs> {} }:
{ stdenv, pkgs }: #? import <nixpkgs> {} }:
let
self = rec {
hex = import ./hex-packages.nix { callPackage = self.callPackage; };
hex = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; };
callPackage = pkgs.lib.callPackageWith (pkgs // self // hex);
buildRebar3 = callPackage ./build-rebar3.nix {};