Skip to content

Commit

Permalink
Merge pull request #56509 from dotlambda/fix-runtimeShell
Browse files Browse the repository at this point in the history
fix #56408 mess (runtimeShell)
  • Loading branch information
dotlambda committed Feb 28, 2019
2 parents 90e8b73 + ca8fd54 commit c2f358e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Expand Up @@ -49,6 +49,7 @@
, gnugrep
, gnupg
, ffmpeg
, runtimeShell
}:

let
Expand Down Expand Up @@ -191,7 +192,7 @@ stdenv.mkDerivation {
# update with:
# $ nix-shell maintainers/scripts/update.nix --argstr package firefox-bin-unwrapped
passthru.updateScript = import ./update.nix {
inherit stdenv name channel writeScript xidel coreutils gnused gnugrep gnupg curl;
inherit stdenv name channel writeScript xidel coreutils gnused gnugrep gnupg curl runtimeShell;
baseUrl =
if channel == "devedition"
then "http://archive.mozilla.org/pub/devedition/releases/"
Expand Down
Expand Up @@ -41,6 +41,7 @@
, gnused
, gnugrep
, gnupg
, runtimeShell
}:

# imports `version` and `sources`
Expand Down Expand Up @@ -159,7 +160,7 @@ stdenv.mkDerivation {
'';

passthru.updateScript = import ./../../browsers/firefox-bin/update.nix {
inherit name stdenv writeScript xidel coreutils gnused gnugrep curl gnupg;
inherit name stdenv writeScript xidel coreutils gnused gnugrep curl gnupg runtimeShell;
baseName = "thunderbird";
channel = "release";
basePath = "pkgs/applications/networking/mailreaders/thunderbird-bin";
Expand Down
Expand Up @@ -5,7 +5,7 @@
, hunspell, libevent, libstartup_notification
, icu, libpng, jemalloc
, autoconf213, which, m4
, writeScript, xidel, common-updater-scripts, coreutils, gnused, gnugrep, curl
, writeScript, xidel, common-updater-scripts, coreutils, gnused, gnugrep, curl, runtimeShell
, cargo, rustc, llvmPackages
, enableGTK3 ? false, gtk3, gnome3, wrapGAppsHook, makeWrapper
, enableCalendar ? true
Expand Down Expand Up @@ -193,6 +193,6 @@ in stdenv.mkDerivation rec {
passthru.updateScript = import ./../../browsers/firefox/update.nix {
attrPath = "thunderbird";
baseUrl = "http://archive.mozilla.org/pub/thunderbird/releases/";
inherit stdenv writeScript lib common-updater-scripts xidel coreutils gnused gnugrep curl;
inherit stdenv writeScript lib common-updater-scripts xidel coreutils gnused gnugrep curl runtimeShell;
};
}
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/nodejs.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, utillinux, http-parser
, pkgconfig, which
# Updater dependencies
, writeScript, coreutils, gnugrep, jq, curl, common-updater-scripts, nix
, writeScript, coreutils, gnugrep, jq, curl, common-updater-scripts, nix, runtimeShell
, gnupg
, darwin, xcbuild
, procps
Expand Down Expand Up @@ -104,7 +104,7 @@ in
'';

passthru.updateScript = import ./update.nix {
inherit stdenv writeScript coreutils gnugrep jq curl common-updater-scripts gnupg nix;
inherit stdenv writeScript coreutils gnugrep jq curl common-updater-scripts gnupg nix runtimeShell;
inherit (stdenv) lib;
inherit majorVersion;
};
Expand Down

0 comments on commit c2f358e

Please sign in to comment.