Unverified Commit 716b1eac authored by Jacek Galowicz's avatar Jacek Galowicz Committed by GitHub
Browse files

nixos/github-runner: fix nodeRuntimes option (#435476)

parents 651c1b30 82bd28b0
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -187,9 +187,7 @@
            };

            package = lib.mkPackageOption pkgs "github-runner" { } // {
              apply =
                # Support old github-runner versions which don't have the `nodeRuntimes` arg yet.
                pkg: pkg.override (old: lib.optionalAttrs (old ? nodeRuntimes) { inherit (config) nodeRuntimes; });
              apply = pkg: pkg.override { inherit (config) nodeRuntimes; };
            };

            ephemeral = lib.mkOption {