summary refs log tree commit diff
path: root/nixos/modules/virtualisation
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 /nixos/modules/virtualisation
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 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/podman.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/podman.nix b/nixos/modules/virtualisation/podman.nix
index e245004e04a..893afee4c32 100644
--- a/nixos/modules/virtualisation/podman.nix
+++ b/nixos/modules/virtualisation/podman.nix
@@ -9,7 +9,7 @@ let
   podmanPackage = (pkgs.podman.override { inherit (cfg) extraPackages; });
 
   # Provides a fake "docker" binary mapping to podman
-  dockerCompat = pkgs.runCommandNoCC "${podmanPackage.pname}-docker-compat-${podmanPackage.version}" {
+  dockerCompat = pkgs.runCommand "${podmanPackage.pname}-docker-compat-${podmanPackage.version}" {
     outputs = [ "out" "man" ];
     inherit (podmanPackage) meta;
   } ''