summary refs log tree commit diff
path: root/pkgs/tools/networking/maphosts/default.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-01-19 09:34:14 +0100
committerGitHub <noreply@github.com>2017-01-19 09:34:14 +0100
commit3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8 (patch)
tree813926a7bcaf292cca3e48dfbad1ac4dede80a4c /pkgs/tools/networking/maphosts/default.nix
parent485a1ac94b846144e0bc1a0d545dfa03f3530cdf (diff)
parentc9ff7e49a8303bd13a61b5c5cdf33cecfa52457c (diff)
downloadnixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar.gz
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar.bz2
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar.lz
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar.xz
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.tar.zst
nixlib-3fdde25b4c3c7c7962c6e92109d5f4d62f134fc8.zip
Merge pull request #21962 from Mic92/gemdir
bundleEnv: Used gemdir for most applications now
Diffstat (limited to 'pkgs/tools/networking/maphosts/default.nix')
-rw-r--r--pkgs/tools/networking/maphosts/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/tools/networking/maphosts/default.nix b/pkgs/tools/networking/maphosts/default.nix
index 08c56574dcf7..3a48814928e5 100644
--- a/pkgs/tools/networking/maphosts/default.nix
+++ b/pkgs/tools/networking/maphosts/default.nix
@@ -6,9 +6,7 @@ stdenv.mkDerivation rec {
   env = bundlerEnv {
     name = "maphosts-gems";
     inherit ruby;
-    gemfile = ./Gemfile;
-    lockfile = ./Gemfile.lock;
-    gemset = ./gemset.nix;
+    gemdir = ./.;
   };
 
   phases = ["installPhase"];