Skip to content

Instantly share code, notes, and snippets.

@cransom
Created October 27, 2017 21:44
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 cransom/223ab9cc4c23d577d6fa4712c5c09f5d to your computer and use it in GitHub Desktop.
Save cransom/223ab9cc4c23d577d6fa4712c5c09f5d to your computer and use it in GitHub Desktop.
# This allows a user to run nix-shell in the tech repo and then all
# of their system dependencies will be handled. More info on NixOS:
# https://nixos.org/
# http://nixos.org/nix/manual/#sec-nix-shell
{ pkgs ? import <nixpkgs> {}
}:
(pkgs.buildFHSUserEnv {
name = "ihatevagrant";
targetPkgs = pkgs: with pkgs; [
gcc gnumake
#libxml2
zlib
libxml2.dev
libxslt.dev
pkgconfig
vagrant
];
}).env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment