nixpkgs/pkgs/development/erlang-modules/default.nix

15 lines
415 B
Nix
Raw Normal View History

{ stdenv, pkgs }: #? import <nixpkgs> {} }:
2015-12-10 00:12:37 +01:00
let
self = rec {
hex = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; };
callPackage = pkgs.lib.callPackageWith (pkgs // self // hex);
buildRebar3 = callPackage ./build-rebar3.nix {};
2015-12-10 00:12:37 +01:00
buildHex = callPackage ./build-hex.nix {};
## Non hex packages
webdriver = callPackage ./webdriver {};
2015-12-10 00:12:37 +01:00
};
in self // self.hex