diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-01-29 19:26:19 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-01-29 19:26:19 +0100 |
commit | 24a7da33965001415edb022245b289bb5fc49a07 (patch) | |
tree | ddd0b95fc2e6c269b15ab49725f69d93b550ae29 /nixops/modules/websites/tools | |
parent | 79f239be693bb2bad9e1cc64a32e874d96cc4cf7 (diff) | |
download | Nix-24a7da33965001415edb022245b289bb5fc49a07.tar.gz Nix-24a7da33965001415edb022245b289bb5fc49a07.tar.zst Nix-24a7da33965001415edb022245b289bb5fc49a07.zip |
Remove reference to ar coming from busybox sh
Diffstat (limited to 'nixops/modules/websites/tools')
-rw-r--r-- | nixops/modules/websites/tools/mastodon/mastodon.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nixops/modules/websites/tools/mastodon/mastodon.nix b/nixops/modules/websites/tools/mastodon/mastodon.nix index 8650ee3..ae2a3f6 100644 --- a/nixops/modules/websites/tools/mastodon/mastodon.nix +++ b/nixops/modules/websites/tools/mastodon/mastodon.nix | |||
@@ -42,7 +42,7 @@ let | |||
42 | buildInputs = with pkgs; [ nodePackages.node-pre-gyp ]; | 42 | buildInputs = with pkgs; [ nodePackages.node-pre-gyp ]; |
43 | }; | 43 | }; |
44 | node-sass = { | 44 | node-sass = { |
45 | buildInputs = with pkgs; [ binutils libsass python ]; | 45 | buildInputs = with pkgs; [ libsass python ]; |
46 | postInstall = let | 46 | postInstall = let |
47 | nodeHeaders = pkgs.fetchurl { | 47 | nodeHeaders = pkgs.fetchurl { |
48 | url = "https://nodejs.org/download/release/v${pkgs.nodejs.version}/node-v${pkgs.nodejs.version}-headers.tar.gz"; | 48 | url = "https://nodejs.org/download/release/v${pkgs.nodejs.version}/node-v${pkgs.nodejs.version}-headers.tar.gz"; |
@@ -50,7 +50,6 @@ let | |||
50 | }; | 50 | }; |
51 | in | 51 | in |
52 | '' | 52 | '' |
53 | export AR=${pkgs.binutils.bintools}/bin/ar | ||
54 | node scripts/build.js --tarball=${nodeHeaders} | 53 | node scripts/build.js --tarball=${nodeHeaders} |
55 | ''; | 54 | ''; |
56 | }; | 55 | }; |