From 1e589ad15323136ecf0d1d5c30b5a093082417ed Mon Sep 17 00:00:00 2001 From: Piotr Bogdan Date: Mon, 3 Dec 2018 00:49:37 +0000 Subject: [PATCH 1/2] nodejs.updateScript: fix evaluation --- pkgs/development/web/nodejs/nodejs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index ea764ef22e6e..a9c08e1c5b73 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -101,7 +101,7 @@ in ''; passthru.updateScript = import ./update.nix { - inherit writeScript coreutils gnugrep jq curl common-updater-scripts gnupg nix; + inherit stdenv writeScript coreutils gnugrep jq curl common-updater-scripts gnupg nix; inherit (stdenv) lib; majorVersion = with stdenv.lib; elemAt (splitString "." version) 0; }; From bf5b39ed498a7a59922b615d080727e2c8768401 Mon Sep 17 00:00:00 2001 From: Piotr Bogdan Date: Mon, 3 Dec 2018 00:49:53 +0000 Subject: [PATCH 2/2] thunderbird.updateScript: fix evaluation --- .../applications/networking/mailreaders/thunderbird/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index 0ee4137eb233..a372a92e948a 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -202,6 +202,6 @@ in stdenv.mkDerivation rec { passthru.updateScript = import ./../../browsers/firefox/update.nix { attrPath = "thunderbird"; baseUrl = "http://archive.mozilla.org/pub/thunderbird/releases/"; - inherit writeScript lib common-updater-scripts xidel coreutils gnused gnugrep curl; + inherit stdenv writeScript lib common-updater-scripts xidel coreutils gnused gnugrep curl; }; }