055f73407c
This is a basic wrapper that has not gotten much use. It is just a wrapper around other builders for setting src. Given the limited number of uses I'm going to remove it completely. Verified unused in mix2nix, deps_nix, and rebar3_nix. (Some of these would be obvious in tree).
23 lines
389 B
Nix
23 lines
389 B
Nix
{
|
|
lib,
|
|
fetchHex,
|
|
buildRebar3,
|
|
}:
|
|
|
|
buildRebar3 rec {
|
|
name = "pc";
|
|
version = "1.15.0";
|
|
|
|
src = fetchHex {
|
|
pkg = name;
|
|
inherit version;
|
|
sha256 = "sha256-TA+tT2Q3yuNT1RfaIY/ng0e4/6RLmBeIdJTKquVFlbM=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Rebar3 port compiler for native code";
|
|
license = lib.licenses.mit;
|
|
homepage = "https://github.com/blt/port_compiler";
|
|
};
|
|
}
|