about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/beam-modules/rebar3-nix/default.nix
blob: ff248700d7837c74e32d0fe130089e353a827c12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildRebar3, fetchFromGitHub }:
buildRebar3 rec {
  name = "rebar3_nix";
  version = "0.1.0";
  src = fetchFromGitHub {
    owner = "erlang-nix";
    repo = name;
    rev = "v${version}";
    sha256 = "17w8m4aqqgvhpx3xyc7x2qzsrd3ybzc83ay50zs1gyd1b8csh2wf";
  };

  meta = {
    description = "nix integration for rebar3";
    license = lib.licenses.bsd3;
    homepage = "https://github.com/erlang-nix/rebar3_nix";
    maintainers = with lib.maintainers; [ dlesl gleber ];
  };
}