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