beam-modules: format with nixpkgs-fmt
This commit is contained in:
parent
50d34017c2
commit
f0b6a466e1
@ -3,7 +3,7 @@
|
|||||||
let
|
let
|
||||||
inherit (lib) makeExtensible;
|
inherit (lib) makeExtensible;
|
||||||
|
|
||||||
lib' = pkgs.callPackage ./lib.nix {};
|
lib' = pkgs.callPackage ./lib.nix { };
|
||||||
|
|
||||||
# FIXME: add support for overrideScope
|
# FIXME: add support for overrideScope
|
||||||
callPackageWithScope = scope: drv: args: lib.callPackageWith scope drv args;
|
callPackageWithScope = scope: drv: args: lib.callPackageWith scope drv args;
|
||||||
@ -22,7 +22,7 @@ let
|
|||||||
rebar3 = callPackage ../tools/build-managers/rebar3 { };
|
rebar3 = callPackage ../tools/build-managers/rebar3 { };
|
||||||
|
|
||||||
# rebar3 port compiler plugin is required by buildRebar3
|
# rebar3 port compiler plugin is required by buildRebar3
|
||||||
pc_1_6_0 = callPackage ./pc {};
|
pc_1_6_0 = callPackage ./pc { };
|
||||||
pc = pc_1_6_0;
|
pc = pc_1_6_0;
|
||||||
|
|
||||||
fetchHex = callPackage ./fetch-hex.nix { };
|
fetchHex = callPackage ./fetch-hex.nix { };
|
||||||
@ -30,11 +30,11 @@ let
|
|||||||
fetchRebar3Deps = callPackage ./fetch-rebar-deps.nix { };
|
fetchRebar3Deps = callPackage ./fetch-rebar-deps.nix { };
|
||||||
rebar3Relx = callPackage ./rebar3-release.nix { };
|
rebar3Relx = callPackage ./rebar3-release.nix { };
|
||||||
|
|
||||||
buildRebar3 = callPackage ./build-rebar3.nix {};
|
buildRebar3 = callPackage ./build-rebar3.nix { };
|
||||||
buildHex = callPackage ./build-hex.nix {};
|
buildHex = callPackage ./build-hex.nix { };
|
||||||
buildErlangMk = callPackage ./build-erlang-mk.nix {};
|
buildErlangMk = callPackage ./build-erlang-mk.nix { };
|
||||||
fetchMixDeps = callPackage ./fetch-mix-deps.nix { };
|
fetchMixDeps = callPackage ./fetch-mix-deps.nix { };
|
||||||
buildMix = callPackage ./build-mix.nix {};
|
buildMix = callPackage ./build-mix.nix { };
|
||||||
|
|
||||||
# BEAM-based languages.
|
# BEAM-based languages.
|
||||||
elixir = elixir_1_11;
|
elixir = elixir_1_11;
|
||||||
@ -73,11 +73,12 @@ let
|
|||||||
|
|
||||||
# Non hex packages. Examples how to build Rebar/Mix packages with and
|
# Non hex packages. Examples how to build Rebar/Mix packages with and
|
||||||
# without helper functions buildRebar3 and buildMix.
|
# without helper functions buildRebar3 and buildMix.
|
||||||
hex = callPackage ./hex {};
|
hex = callPackage ./hex { };
|
||||||
webdriver = callPackage ./webdriver {};
|
webdriver = callPackage ./webdriver { };
|
||||||
relxExe = callPackage ../tools/erlang/relx-exe {};
|
relxExe = callPackage ../tools/erlang/relx-exe { };
|
||||||
|
|
||||||
# An example of Erlang/C++ package.
|
# An example of Erlang/C++ package.
|
||||||
cuter = callPackage ../tools/erlang/cuter {};
|
cuter = callPackage ../tools/erlang/cuter { };
|
||||||
};
|
};
|
||||||
in makeExtensible packages
|
in
|
||||||
|
makeExtensible packages
|
||||||
|
Loading…
x
Reference in New Issue
Block a user