b1719f9fcc
This commit adds 187 packages from Hex.pm and documents 100 more that could not be imported for various reasons. The packages where generated by hex2nix.
11 lines
346 B
Nix
11 lines
346 B
Nix
{ stdenv, pkgs }: #? import <nixpkgs> {} }:
|
|
|
|
let
|
|
self = rec {
|
|
hex = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; };
|
|
callPackage = pkgs.lib.callPackageWith (pkgs // self // hex);
|
|
|
|
buildRebar3 = callPackage ./build-rebar3.nix {};
|
|
buildHex = callPackage ./build-hex.nix {};
|
|
};
|
|
in self // self.hex
|