aboutsummaryrefslogtreecommitdiff
path: root/nixops/modules/websites/tools/diaspora/diaspora.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixops/modules/websites/tools/diaspora/diaspora.nix')
-rw-r--r--nixops/modules/websites/tools/diaspora/diaspora.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixops/modules/websites/tools/diaspora/diaspora.nix b/nixops/modules/websites/tools/diaspora/diaspora.nix
index 616c5cc..a57c529 100644
--- a/nixops/modules/websites/tools/diaspora/diaspora.nix
+++ b/nixops/modules/websites/tools/diaspora/diaspora.nix
@@ -15,7 +15,10 @@ let
15 }); 15 });
16 gems = bundlerEnv { 16 gems = bundlerEnv {
17 name = "diaspora-env"; 17 name = "diaspora-env";
18 ruby = ruby_2_4; 18 # https://git.immae.eu/mantisbt/view.php?id=131
19 ruby = ruby_2_4.overrideAttrs(old: {
20 postInstall = builtins.replaceStrings [" --destdir $GEM_HOME"] [""] old.postInstall;
21 });
19 gemfile = "${diaspora}/Gemfile"; 22 gemfile = "${diaspora}/Gemfile";
20 lockfile = "${diaspora}/Gemfile.lock"; 23 lockfile = "${diaspora}/Gemfile.lock";
21 gemset = ./gemset.nix; 24 gemset = ./gemset.nix;