aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/erlang
diff options
context:
space:
mode:
authorEric Merritt <eric@merritt.tech>2016-01-14 07:07:13 -0800
committerEric Merritt <eric@merritt.tech>2016-01-14 14:34:47 -0800
commit99bf9bf07ab20aececb2a951f770786afcadc1d4 (patch)
tree1cf220f3fe4f285c950670b27a03ff022f42ac8c /pkgs/development/tools/erlang
parent07f07f2d300e2a80c68b030a58692c2543c23646 (diff)
rebar3-nix-boostrap: init at 0.0.1
Diffstat (limited to 'pkgs/development/tools/erlang')
-rw-r--r--pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix
new file mode 100644
index 00000000000..347ec1d8bb6
--- /dev/null
+++ b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix
@@ -0,0 +1,22 @@
+{stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "rebar3-nix-bootstrap";
+ version = "0.0.1";
+
+ src = fetchFromGitHub {
+ owner = "erlang-nix";
+ repo = "rebar3-nix-bootstrap";
+ rev = "${version}";
+ sha256 = "0xyj7j59dmxyl5nhhsmb0r1pihmk0s4k02ga1rfgm30rij6n7431";
+ };
+
+ installFlags = "PREFIX=$(out)";
+
+ meta = {
+ description = "Shim command to help bootstrap a rebar3 project on Nix";
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/erl-nix/rebar3-nix-bootstrap";
+ maintainers = with stdenv.lib.maintainers; [ ericbmerritt ];
+ };
+}