Created
May 7, 2016 01:00
-
-
Save RocketPuppy/95ef487cf2582253d7266fc0e9243918 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv ? (import <nixpkgs> {}).stdenv, | |
go ? (import <nixpkgs> {}).go_1_6, | |
goPackages ? (import <nixpkgs> {}).go16Packages, | |
git ? (import <nixpkgs> {}).git, | |
curl ? (import <nixpkgs> {}).curl, | |
cacert ? (import <nixpkgs> {}).cacert, | |
cowsay ? (import <nixpkgs> {}).cowsay, | |
jq ? (import <nixpkgs> {}).jq, | |
openssl ? (import <nixpkgs> {}).openssl, | |
nodejs ? (import <nixpkgs> {}).nodejs_5_x, | |
python ? (import <nixpkgs> {}).python, | |
fetchFromGitHub ? (import <nixpkgs> {}).fetchFromGitHub | |
}: | |
let goDeps = import ./godeps.nix { inherit goPackages fetchFromGitHub; }; | |
finalPackages = goPackages // goDeps; | |
in | |
import ./heroku-cli.nix { | |
goPackages = finalPackages; | |
inherit stdenv go git curl cacert cowsay jq openssl nodejs python fetchFromGitHub; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment