rebar3: 3.9.1 -> 3.10.0 (#60765)
* rebar3: 3.9.1 -> 3.10.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rebar3/versions * rebar3: don't use fetchurl for mutable GitHub archives + parse_trans 3.3.0 hash has changed
This commit is contained in:
parent
c87f3820e5
commit
1330269c15
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchurl,
|
{ stdenv, fetchFromGitHub,
|
||||||
fetchHex, erlang,
|
fetchHex, erlang,
|
||||||
tree, hexRegistrySnapshot }:
|
tree, hexRegistrySnapshot }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "3.9.1";
|
version = "3.10.0";
|
||||||
|
|
||||||
bootstrapper = ./rebar3-nix-bootstrap;
|
bootstrapper = ./rebar3-nix-bootstrap;
|
||||||
|
|
||||||
@ -65,17 +65,19 @@ let
|
|||||||
parse_trans = fetchHex {
|
parse_trans = fetchHex {
|
||||||
pkg = "parse_trans";
|
pkg = "parse_trans";
|
||||||
version = "3.3.0";
|
version = "3.3.0";
|
||||||
sha256 = "17ef63abde837ad30680ea7f857dd9e7ced9476cdd7b0394432af4bfc241b960";
|
sha256 = "0q5r871bzx1a8fa06yyxdi3xkkp7v5yqazzah03d6yl3vsmn7vqp";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "rebar3-${version}";
|
pname = "rebar3";
|
||||||
inherit version erlang;
|
inherit version erlang;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/rebar/rebar3/archive/${version}.tar.gz";
|
owner = "rebar";
|
||||||
sha256 = "1n6287av29ws3bvjxxmw8s2j8avwich4ccisnnrnypfbm1khlcxp";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1p34kfkrdmsixg95ad76rifjwfh484vp688lxsjaxg0kf2xjr2d2";
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit bootstrapper;
|
inherit bootstrapper;
|
||||||
@ -121,7 +123,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/rebar/rebar3;
|
homepage = https://github.com/rebar/rebar3;
|
||||||
description = "rebar 3 is an Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases";
|
description = "Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
rebar is a self-contained Erlang script, so it's easy to distribute or
|
rebar is a self-contained Erlang script, so it's easy to distribute or
|
||||||
|
Loading…
Reference in New Issue
Block a user