summary refs log tree commit diff
path: root/lib/tests
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-08-15 17:12:23 +0200
committerRobert Hensing <robert@roberthensing.nl>2021-08-15 17:36:41 +0200
commitfbafeb7ad5dd6196fcc5d84264e1706653a62f81 (patch)
tree5e80c4048b4206232b22dc2a8e893e6575ba93d8 /lib/tests
parent1359293549af4f8ca536716d0432f3cdd0afe0c6 (diff)
downloadnixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar.gz
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar.bz2
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar.lz
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar.xz
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.tar.zst
nixpkgs-fbafeb7ad5dd6196fcc5d84264e1706653a62f81.zip
treewide: runCommandNoCC -> runCommand
This has been synonymous for ~5y.
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/maintainers.nix4
-rw-r--r--lib/tests/release.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/tests/maintainers.nix b/lib/tests/maintainers.nix
index d3ed398c80a..2408a20af4b 100644
--- a/lib/tests/maintainers.nix
+++ b/lib/tests/maintainers.nix
@@ -61,9 +61,9 @@ let
 
   missingGithubIds = lib.concatLists (lib.mapAttrsToList checkMaintainer lib.maintainers);
 
-  success = pkgs.runCommandNoCC "checked-maintainers-success" {} ">$out";
+  success = pkgs.runCommand "checked-maintainers-success" {} ">$out";
 
-  failure = pkgs.runCommandNoCC "checked-maintainers-failure" {
+  failure = pkgs.runCommand "checked-maintainers-failure" {
     nativeBuildInputs = [ pkgs.curl pkgs.jq ];
     outputHash = "sha256:${lib.fakeSha256}";
     outputHAlgo = "sha256";
diff --git a/lib/tests/release.nix b/lib/tests/release.nix
index c3b05251f70..77e0e1af755 100644
--- a/lib/tests/release.nix
+++ b/lib/tests/release.nix
@@ -3,7 +3,7 @@
   pkgs ? import ../.. {} // { lib = throw "pkgs.lib accessed, but the lib tests should use nixpkgs' lib path directly!"; }
 }:
 
-pkgs.runCommandNoCC "nixpkgs-lib-tests" {
+pkgs.runCommand "nixpkgs-lib-tests" {
   buildInputs = [
     pkgs.nix
     (import ./check-eval.nix)