Skip to content

Commit

Permalink
Replace removed runCommandNoCC alias with runCommand
Browse files Browse the repository at this point in the history
It has been synonymous with runCommand since
NixOS/nixpkgs@97bfc2f
(2016-09-26), was deprecated in
NixOS/nixpkgs#134225 (2021-08-15), and was
removed in NixOS/nixpkgs#192681 (2022-09-24).

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Loading branch information
andersk committed Sep 26, 2022
1 parent 0508a66 commit 0b9e468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firefox-overlay.nix
Expand Up @@ -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;
Expand Down

0 comments on commit 0b9e468

Please sign in to comment.