top-level/make-tarball.nix: drop unused argument

This commit is contained in:
K900 2024-04-22 22:43:53 +03:00
parent 5106caae70
commit 513c54588f
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@
{ nixpkgs
, officialRelease
, supportedSystems
, pkgs ? import nixpkgs.outPath {}
, nix ? pkgs.nix
, lib-tests ? import ../../lib/tests/release.nix { inherit pkgs; }

View File

@ -18,7 +18,7 @@ in
{
tarball = import ./make-tarball.nix {
inherit nixpkgs supportedSystems;
inherit nixpkgs;
officialRelease = false;
};

View File

@ -78,7 +78,7 @@ let
] (arch: elem "${arch}-darwin" supportedSystems);
nonPackageJobs =
{ tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease supportedSystems; };
{ tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
release-checks = import ./nixpkgs-basic-release-checks.nix { inherit pkgs nixpkgs supportedSystems; };