Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

hex2nix: 0.0.5 -> 0.0.6

+21 -5
+1
pkgs/development/beam-modules/default.nix
··· 80 version = "0.8.2"; 81 sha256 = "1xw30h59zbw957cyjd8n50hf9y09jnv9dyry6x3avfwzcyrnsvkk"; 82 }; 83 # Non hex packages. Examples how to build Rebar/Mix packages with and 84 # without helper functions buildRebar3 and buildMix. 85 hex = callPackage ./hex {};
··· 80 version = "0.8.2"; 81 sha256 = "1xw30h59zbw957cyjd8n50hf9y09jnv9dyry6x3avfwzcyrnsvkk"; 82 }; 83 + 84 # Non hex packages. Examples how to build Rebar/Mix packages with and 85 # without helper functions buildRebar3 and buildMix. 86 hex = callPackage ./hex {};
+20 -5
pkgs/development/tools/erlang/hex2nix/default.nix
··· 1 - {stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons, getopt }: 2 3 buildRebar3 rec { 4 name = "hex2nix"; 5 - version = "0.0.5"; 6 7 src = fetchFromGitHub { 8 owner = "erlang-nix"; 9 repo = "hex2nix"; 10 rev = "${version}"; 11 - sha256 = "07bk18nib4xms8q1i4sv53drvlyllm47map4c95669lsh0j08sax"; 12 }; 13 14 - beamDeps = [ ibrowse jsx erlware_commons getopt ]; 15 16 - DEBUG=1; 17 18 installPhase = '' 19 runHook preInstall
··· 1 + { stdenv, fetchFromGitHub, buildRebar3, buildHex 2 + 3 + , getopt_0_8_2, erlware_commons_1_0_0 }: 4 + 5 + let 6 + ibrowse_4_4_0 = buildHex { 7 + name = "ibrowse"; 8 + version = "4.4.0"; 9 + sha256 = "1hpic1xgksfm00mbl1kwmszca6jmjca32s7gdd8g11i0hy45k3ka"; 10 + }; 11 + jsx_2_8_2 = buildHex { 12 + name = "jsx"; 13 + version = "2.8.2"; 14 + sha256 = "0k7lnmwqbgpmh90wy30kc0qlddkbh9r3sjlyayaqsz1r1cix7idl"; 15 + }; 16 17 + in 18 buildRebar3 rec { 19 name = "hex2nix"; 20 + version = "0.0.6"; 21 22 src = fetchFromGitHub { 23 owner = "erlang-nix"; 24 repo = "hex2nix"; 25 rev = "${version}"; 26 + sha256 = "17rkzg836v7z2xf0i5m8zqfvr23dbmw1bi3c83km92f9glwa1dbf"; 27 }; 28 29 + beamDeps = [ ibrowse_4_4_0 jsx_2_8_2 erlware_commons_1_0_0 getopt_0_8_2 ]; 30 31 + enableDebugInfo = true; 32 33 installPhase = '' 34 runHook preInstall