summary refs log tree commit diff
path: root/pkgs/development/beam-modules/rebar3-nix/default.nix
blob: 50bd296583541a47045e32422fb99c0f863bdbc4 (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.1";
  src = fetchFromGitHub {
    owner = "erlang-nix";
    repo = name;
    rev = "v${version}";
    sha256 = "10ijc06qvv5hqv0qy3w7mbv9pshdb8bvy0f3phr1vd5hksbk731y";
  };

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