mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
14 lines
296 B
Nix
14 lines
296 B
Nix
|
{ lib, buildHex }:
|
||
|
|
||
|
buildHex {
|
||
|
name = "rebar3_proper";
|
||
|
version = "0.12.1";
|
||
|
sha256 = "1f174fb6h2071wr7qbw9aqqvnglzsjlylmyi8215fhrmi38w94b6";
|
||
|
|
||
|
meta = {
|
||
|
description = "rebar3 proper plugin";
|
||
|
license = lib.licenses.bsd3;
|
||
|
homepage = "https://github.com/ferd/rebar3_proper";
|
||
|
};
|
||
|
}
|