aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/webapps')
-rw-r--r--pkgs/webapps/mastodon/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/webapps/mastodon/default.nix b/pkgs/webapps/mastodon/default.nix
index 0f936b5..12e4c2c 100644
--- a/pkgs/webapps/mastodon/default.nix
+++ b/pkgs/webapps/mastodon/default.nix
@@ -55,13 +55,13 @@ let
55 }; 55 };
56 }; 56 };
57 }; 57 };
58 mastodon_with_yarn = stdenv.mkDerivation (mylibs.fetchedGithub ./mastodon.json // rec { 58 mastodon_with_yarn = stdenv.mkDerivation (mylibs.fetchedGithub ./mastodon.json // rec {
59 installPhase = '' 59 installPhase = ''
60 cp -a . $out 60 cp -a . $out
61 cp -a ${yarnModules}/node_modules $out 61 cp -a ${yarnModules}/node_modules $out
62 ''; 62 '';
63 buildInputs = [ yarnModules ]; 63 buildInputs = [ yarnModules ];
64 }); 64 });
65in 65in
66stdenv.mkDerivation { 66stdenv.mkDerivation {
67 name = "mastodon"; 67 name = "mastodon";