lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 23 lines 515 B view raw
1{stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons, getopt }: 2 3buildRebar3 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 20 make PREFIX=$out install 21 runHook postInstall 22 ''; 23 }