mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
rebar3-nix: init at 0.1.0
This commit is contained in:
parent
eec3738f4c
commit
f2dd3eac0e
3 changed files with 25 additions and 0 deletions
|
@ -2511,6 +2511,12 @@
|
|||
githubId = 1316469;
|
||||
name = "Naomi Morse";
|
||||
};
|
||||
dlesl = {
|
||||
email = "dlesl@dlesl.com";
|
||||
github = "dlesl";
|
||||
githubId = 28980797;
|
||||
name = "David Leslie";
|
||||
};
|
||||
dmalikov = {
|
||||
email = "malikov.d.y@gmail.com";
|
||||
github = "dmalikov";
|
||||
|
|
|
@ -23,6 +23,7 @@ let
|
|||
|
||||
# rebar3 port compiler plugin is required by buildRebar3
|
||||
pc = callPackage ./pc { };
|
||||
rebar3-nix = callPackage ./rebar3-nix { };
|
||||
|
||||
fetchHex = callPackage ./fetch-hex.nix { };
|
||||
|
||||
|
|
18
pkgs/development/beam-modules/rebar3-nix/default.nix
Normal file
18
pkgs/development/beam-modules/rebar3-nix/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue