Created
October 27, 2017 21:44
-
-
Save cransom/223ab9cc4c23d577d6fa4712c5c09f5d 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
# 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