about summary refs log tree commit diff
path: root/pkgs/development/tools/erlang
diff options
context:
space:
mode:
authorEric Merritt <eric@merritt.tech>2016-04-15 11:06:57 -0700
committerEric Merritt <eric@merritt.tech>2016-04-23 19:03:29 -0700
commit383626b9d7dd56618f0789eefee147a097ada4a4 (patch)
tree9fc59e5d96f9f85bb84fba6f59671d6777f799cb /pkgs/development/tools/erlang
parent2d6d9682bb8a910f3eb5f0be8d5687c753e9732c (diff)
downloadnixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar.gz
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar.bz2
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar.lz
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar.xz
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.tar.zst
nixlib-383626b9d7dd56618f0789eefee147a097ada4a4.zip
move rebar3-nix-bootstrap to rebar3
This moves rebar3-nix-bootstrap from its own repository to rebar3. Its a
single file and this vastly reduces the complexity of making changes.
Diffstat (limited to 'pkgs/development/tools/erlang')
-rw-r--r--pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix
deleted file mode 100644
index ed38d573abf1..000000000000
--- a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{stdenv, fetchFromGitHub, erlang }:
-
-stdenv.mkDerivation rec {
-    name = "rebar3-nix-bootstrap";
-    version = "0.0.3";
-
-    src = fetchFromGitHub {
-        owner = "erlang-nix";
-        repo = "rebar3-nix-bootstrap";
-        rev = "${version}";
-        sha256 = "01yyaz104jj3mxx8k10q3rwpn2rh13q1ja5r0iq37qyjmg8xflhq";
-    };
-
-    buildInputs = [ erlang ];
-
-    installFlags = "PREFIX=$(out)";
-
-    meta = {
-      description = "Shim command to help bootstrap a rebar3 project on Nix";
-      license = stdenv.lib.licenses.asl20;
-      homepage = "https://github.com/erlang-nix/rebar3-nix-bootstrap";
-      maintainers = with stdenv.lib.maintainers; [ ericbmerritt ];
-    };
-}