nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildRebar3,
4 fetchFromGitHub,
5}:
6buildRebar3 rec {
7 name = "rebar3_nix";
8 version = "0.1.1";
9 src = fetchFromGitHub {
10 owner = "erlang-nix";
11 repo = name;
12 rev = "v${version}";
13 sha256 = "10ijc06qvv5hqv0qy3w7mbv9pshdb8bvy0f3phr1vd5hksbk731y";
14 };
15
16 meta = {
17 description = "nix integration for rebar3";
18 license = lib.licenses.bsd3;
19 homepage = "https://github.com/erlang-nix/rebar3_nix";
20 maintainers = with lib.maintainers; [
21 dlesl
22 gleber
23 ];
24 };
25}