diff options
author | jeschli <jeschli@gmail.com> | 2018-06-27 17:01:04 +0200 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-06-27 17:01:04 +0200 |
commit | 83674e65b648c3a58951c195ac51d44e740d85b7 (patch) | |
tree | aaa46761d5a27a371968fb874ec8314fdd5ff18b | |
parent | 8af1f07c68cf49b4e3a96ce68adc1cf7f0134292 (diff) |
j brauerei: vagrant fix
-rw-r--r-- | jeschli/1systems/brauerei/config.nix | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/jeschli/1systems/brauerei/config.nix b/jeschli/1systems/brauerei/config.nix index 235d64d..a8b3619 100644 --- a/jeschli/1systems/brauerei/config.nix +++ b/jeschli/1systems/brauerei/config.nix @@ -1,5 +1,5 @@ # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { imports = [ <stockholm/jeschli> @@ -76,7 +76,17 @@ ghc python35 python35Packages.pip - vagrant + (vagrant.override { + bundlerEnv = bundlerEnv.override { + bundler = bundler.overrideAttrs (old: { + name = "bundler-1.16.1"; + src = fetchurl { + url = "https://rubygems.org/gems/bundler-1.16.1.gem"; + sha256 = "1s2nq4qnffxg3kwrk7cnwxcvfihlhxm9absl2l6d3qckf3sy1f22"; + }; + }); + }; + }) # go tools golint gotools |