top-level/make-tarball.nix: drop unused argument
This commit is contained in:
parent
5106caae70
commit
513c54588f
3 changed files with 2 additions and 3 deletions
|
@ -4,7 +4,6 @@
|
|||
|
||||
{ nixpkgs
|
||||
, officialRelease
|
||||
, supportedSystems
|
||||
, pkgs ? import nixpkgs.outPath {}
|
||||
, nix ? pkgs.nix
|
||||
, lib-tests ? import ../../lib/tests/release.nix { inherit pkgs; }
|
||||
|
|
|
@ -18,7 +18,7 @@ in
|
|||
{
|
||||
|
||||
tarball = import ./make-tarball.nix {
|
||||
inherit nixpkgs supportedSystems;
|
||||
inherit nixpkgs;
|
||||
officialRelease = false;
|
||||
};
|
||||
|
||||
|
|
|
@ -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; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue