3a9110b15c
Allow specifying pluginDeps for buildHex listing rebar3 plugins which are required for given package to be built by rebar3.
10 lines
200 B
Nix
10 lines
200 B
Nix
{ buildHex, rebar3-pc }:
|
|
|
|
buildHex {
|
|
name = "esqlite";
|
|
version = "0.2.1";
|
|
sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr";
|
|
compilePorts = true;
|
|
pluginDeps = [ rebar3-pc ];
|
|
}
|