1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/erlang-modules/default.nix

15 lines
415 B
Nix
Raw Normal View History

{ stdenv, pkgs }: #? import <nixpkgs> {} }:
2015-12-09 23:12:37 +00: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-09 23:12:37 +00:00
buildHex = callPackage ./build-hex.nix {};
## Non hex packages
webdriver = callPackage ./webdriver {};
2015-12-09 23:12:37 +00:00
};
in self // self.hex