about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/travis/shell.nix
blob: ddcf493bb46823417b5bc31bde3a4c478f2ef836 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Env to update Gemfile.lock / gemset.nix

with import <nixpkgs> {};
stdenv.mkDerivation {
  name = "env";
  buildInputs = [
    ruby.devEnv
    gnumake
    bundix
  ];
}