{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchgit,
  fetchHex,
  erlang,
  makeWrapper,
  writableTmpDirAsHomeHook,
  writeScript,
  common-updater-scripts,
  coreutils,
  git,
  gnused,
  nix,
  rebar3-nix,
}:

let
  deps = import ./rebar-deps.nix { inherit fetchFromGitHub fetchgit fetchHex; };
  rebar3 = stdenv.mkDerivation (finalAttrs: {
    pname = "rebar3";
    version = "3.27.0";

    __structuredAttrs = true;
    strictDeps = true;

    # How to obtain `sha256`:
    # nix-prefetch-url --unpack https://github.com/erlang/rebar3/archive/${version}.tar.gz
    src = fetchFromGitHub {
      owner = "erlang";
      repo = "rebar3";
      tag = finalAttrs.version;
      sha256 = "+va3wHlAfVtl3aK6+DVkN/EgpiMxwAGUyNywaWiKTJQ=";
    };

    nativeBuildInputs = [
      erlang
      writableTmpDirAsHomeHook
    ];

    buildInputs = [ erlang ];

    postPatch = ''
      mkdir -p _checkouts _build/default/lib/

      ${toString (
        lib.mapAttrsToList (k: v: ''
          cp -R --no-preserve=mode ${v} _checkouts/${k}
        '') deps
      )}

      # Bootstrap script expects the dependencies in _build/default/lib
      # TODO: Make it accept checkouts?
      for i in _checkouts/* ; do
          ln -s $(pwd)/$i $(pwd)/_build/default/lib/
      done
    ''
    # OTP 29 tests fail on warnings, fixed in https://github.com/erlang/rebar3/pull/2996
    + lib.optionalString ((lib.versions.major erlang.version) == "29") ''
      substituteInPlace rebar.config --replace-fail 'nowarn_deprecated_catch' 'nowarn_deprecated_catch,nowarn_export_var_subexpr'

      substituteInPlace apps/rebar/test/rebar_xref_SUITE.erl \
        --replace-fail 'xref_test, xref_ignore_test,' 'xref_test,'
    '';

    buildPhase = ''
      runHook preBuild

      escript bootstrap

      runHook postBuild
    '';

    checkPhase = ''
      runHook preCheck

      escript ./rebar3 ct

      runHook postCheck
    '';

    doCheck = true;

    installPhase = ''
      runHook preInstall

      mkdir -p $out/bin
      cp rebar3 $out/bin/rebar3

      runHook postInstall
    '';

    meta = {
      homepage = "https://github.com/rebar/rebar3";
      changelog = "https://github.com/erlang/rebar3/releases/tag/${finalAttrs.version}";
      description = "Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases";
      mainProgram = "rebar3";

      longDescription = ''
        rebar is a self-contained Erlang script, so it's easy to distribute or
        even embed directly in a project. Where possible, rebar uses standard
        Erlang/OTP conventions for project structures, thus minimizing the amount
        of build configuration work. rebar also provides dependency management,
        enabling application writers to easily re-use common libraries from a
        variety of locations (hex.pm, git, hg, and so on).
      '';

      platforms = lib.platforms.unix;
      teams = [ lib.teams.beam ];
      license = lib.licenses.asl20;
    };

    passthru.updateScript = writeScript "update.sh" ''
      #!${stdenv.shell}
      set -ox errexit
      PATH=${
        lib.makeBinPath [
          common-updater-scripts
          coreutils
          git
          gnused
          nix
          (rebar3WithPlugins { globalPlugins = [ rebar3-nix ]; })
        ]
      }
      latest=$(list-git-tags | sed -n '/[\d\.]\+/p' | sort -V | tail -1)
      if [ "$latest" != "${finalAttrs.version}" ]; then
        nixpkgs="$(git rev-parse --show-toplevel)"
        nix_path="$nixpkgs/pkgs/development/tools/build-managers/rebar3"
        update-source-version rebar3 "$latest" --version-key=version --print-changes --file="$nix_path/default.nix"
        tmpdir=$(mktemp -d)
        cp -R $(nix-build $nixpkgs --no-out-link -A rebar3.src)/* "$tmpdir"
        (cd "$tmpdir" && rebar3 as test nix lock -o "$nix_path/rebar-deps.nix")
        nix run -f $nixpkgs/ci fmt.pkg "$nix_path/rebar-deps.nix"
      else
        echo "rebar3 is already up-to-date"
      fi
    '';
  });

  # Alias rebar3 so we can use it as default parameter below
  _rebar3 = rebar3;

  rebar3WithPlugins =
    {
      plugins ? [ ],
      globalPlugins ? [ ],
      rebar3 ? _rebar3,
    }:
    let
      pluginLibDirs = map (p: "${p}/lib/erlang/lib") (lib.unique (plugins ++ globalPlugins));
      globalPluginNames = lib.unique (map (p: p.pname) globalPlugins);
      rebar3Patched = (
        rebar3.overrideAttrs (old: {

          # skip-plugins.patch is necessary because otherwise rebar3 will always
          # try to fetch plugins if they are not already present in _build.
          #
          # global-deps.patch makes it possible to use REBAR_GLOBAL_PLUGINS to
          # instruct rebar3 to always load a certain plugin. It is necessary since
          # REBAR_GLOBAL_CONFIG_DIR doesn't seem to work for this.
          patches = [
            ./skip-plugins.patch
            ./global-plugins.patch
          ];

          # our patches cause the tests to fail
          doCheck = false;
        })
      );
    in
    stdenv.mkDerivation {
      pname = "rebar3-with-plugins";
      inherit (rebar3) version;
      nativeBuildInputs = [
        erlang
        makeWrapper
      ];
      unpackPhase = "true";

      # Here we extract the rebar3 escript (like `rebar3_prv_local_install.erl`) and
      # add plugins to the code path.

      installPhase = ''
        erl -noshell -eval '
          {ok, Escript} = escript:extract("${rebar3Patched}/bin/rebar3", []),
          {archive, Archive} = lists:keyfind(archive, 1, Escript),
          {ok, _} = zip:extract(Archive, [{cwd, "'$out/lib'"}]),
          init:stop(0)
        '
        cp ${./rebar_ignore_deps.erl} rebar_ignore_deps.erl
        erlc -o $out/lib/rebar/ebin rebar_ignore_deps.erl
        mkdir -p $out/bin
        makeWrapper ${erlang}/bin/erl $out/bin/rebar3 \
          --set REBAR_GLOBAL_PLUGINS "${toString globalPluginNames} rebar_ignore_deps" \
          --suffix-each ERL_LIBS ":" "$out/lib ${toString pluginLibDirs}" \
          --add-flags "+sbtu +A1 -noshell -boot start_clean -s rebar3 main -extra"
      '';
    };
in
{
  inherit rebar3 rebar3WithPlugins;
}
