summary refs log tree commit diff
path: root/pkgs/development/tools/misc/travis/shell.nix
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-03-12 10:47:17 +0000
committerzimbatm <zimbatm@zimbatm.com>2018-03-12 10:47:16 +0000
commitbbf69b7301a5e67b1af28e8e36bc2d12994eb4c6 (patch)
treed10f07b230f841c4e36ea5abeb8b750cb8a72e13 /pkgs/development/tools/misc/travis/shell.nix
parenta9e1ae3d2981514616596f52c510a3c9bc035cb3 (diff)
downloadnixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar.gz
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar.bz2
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar.lz
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar.xz
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.tar.zst
nixpkgs-bbf69b7301a5e67b1af28e8e36bc2d12994eb4c6.zip
travis: add update instructions (#36855)
Diffstat (limited to 'pkgs/development/tools/misc/travis/shell.nix')
-rw-r--r--pkgs/development/tools/misc/travis/shell.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/travis/shell.nix b/pkgs/development/tools/misc/travis/shell.nix
new file mode 100644
index 00000000000..ddcf493bb46
--- /dev/null
+++ b/pkgs/development/tools/misc/travis/shell.nix
@@ -0,0 +1,11 @@
+# Env to update Gemfile.lock / gemset.nix
+
+with import <nixpkgs> {};
+stdenv.mkDerivation {
+  name = "env";
+  buildInputs = [
+    ruby.devEnv
+    gnumake
+    bundix
+  ];
+}