From 0b9e468ca9b41c4e5e218864546bc2c81c0340d2 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 26 Sep 2022 14:22:08 -0700 Subject: [PATCH] Replace removed runCommandNoCC alias with runCommand It has been synonymous with runCommand since https://github.com/NixOS/nixpkgs/commit/97bfc2fac92d90c668ae1ec078356d0bd0a9ddb7 (2016-09-26), was deprecated in https://github.com/NixOS/nixpkgs/pull/134225 (2021-08-15), and was removed in https://github.com/NixOS/nixpkgs/pull/192681 (2022-09-24). Signed-off-by: Anders Kaseorg --- firefox-overlay.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firefox-overlay.nix b/firefox-overlay.nix index acb2002..4450c41 100644 --- a/firefox-overlay.nix +++ b/firefox-overlay.nix @@ -87,7 +87,7 @@ let # From the version info, check the authenticity of the check sum file, such # that we guarantee that we have verifyFileAuthenticity = { file, asc }: - if asc == null then "" else super.runCommandNoCC "check-firefox-signature" { + if asc == null then "" else super.runCommand "check-firefox-signature" { buildInputs = [ self.gnupg ]; FILE = file; ASC = asc;