mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
22 lines
572 B
Nix
22 lines
572 B
Nix
{ fetchFromGitHub, rebar3Relx, lib }:
|
|
|
|
rebar3Relx rec {
|
|
pname = "erlfmt";
|
|
version = "1.5.0";
|
|
releaseType = "escript";
|
|
src = fetchFromGitHub {
|
|
owner = "WhatsApp";
|
|
repo = "erlfmt";
|
|
sha256 = "sha256-TtOHcXiXl13KSGarMBdvvDjv1YQJjDVFtDLC0LDz9Bc=";
|
|
rev = "v${version}";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/WhatsApp/erlfmt";
|
|
description = "Automated code formatter for Erlang";
|
|
mainProgram = "erlfmt";
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
maintainers = with lib.maintainers; [ dlesl ];
|
|
};
|
|
}
|