406b974420
If compilePorts is enabled plugin "pc" is added to the rebar.config during postPatch. This makes rebar3 compile download the plugin, hence added TODO.
17 lines
504 B
Nix
17 lines
504 B
Nix
{ pkgs }: #? import <nixpkgs> {} }:
|
|
|
|
let
|
|
callPackage = pkgs.lib.callPackageWith (pkgs // self);
|
|
|
|
self = rec {
|
|
buildErlang = callPackage ./build-erlang.nix {};
|
|
buildHex = callPackage ./build-hex.nix {};
|
|
|
|
esqlite = callPackage ./hex/esqlite.nix {};
|
|
goldrush = callPackage ./hex/goldrush.nix {};
|
|
ibrowse = callPackage ./hex/ibrowse.nix {};
|
|
jiffy = callPackage ./hex/jiffy.nix {};
|
|
lager = callPackage ./hex/lager.nix {};
|
|
meck = callPackage ./hex/meck.nix {};
|
|
};
|
|
in self
|