3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/erlang-modules/default.nix
Eric Merritt 10fd4dff99 erlang support: move hex packages to hex namespace
This commit moves all the hex based packages to a single namespace. It
also moves all the packages to a single file.  This is in preparation
for the move to a system to generate the hex packages from the hex
package store.
2016-01-14 14:37:07 -08:00

11 lines
320 B
Nix

{ pkgs }: #? import <nixpkgs> {} }:
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