Files
Adam C. Stephens 055f73407c beamPackages.buildHex: remove
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).
2026-02-21 20:58:54 -05:00

23 lines
387 B
Nix

{
lib,
buildRebar3,
fetchHex,
}:
buildRebar3 rec {
name = "rebar3_proper";
version = "0.12.1";
src = fetchHex {
pkg = name;
inherit version;
sha256 = "1f174fb6h2071wr7qbw9aqqvnglzsjlylmyi8215fhrmi38w94b6";
};
meta = {
description = "rebar3 proper plugin";
license = lib.licenses.bsd3;
homepage = "https://github.com/ferd/rebar3_proper";
};
}