Skip to content

Instantly share code, notes, and snippets.

/-

Created January 24, 2018 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2b3282e1343e3f10610500b2bc6335a7 to your computer and use it in GitHub Desktop.
Save anonymous/2b3282e1343e3f10610500b2bc6335a7 to your computer and use it in GitHub Desktop.
with import <nixpkgs> { };
let eyaml_env = bundlerEnv rec {
name = "eyaml_env";
ruby = ruby_2_2;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
gemConfig = pkgs.defaultGemConfig // {
gpgme = attrs: {
buildInputs = [ gpgme pkgs.darwin.libobjc ];
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment