Commit 513c5458 authored by K900's avatar K900
Browse files

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

parent 5106caae
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@

{ nixpkgs
, officialRelease
, supportedSystems
, pkgs ? import nixpkgs.outPath {}
, nix ? pkgs.nix
, lib-tests ? import ../../lib/tests/release.nix { inherit pkgs; }
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ in
{

  tarball = import ./make-tarball.nix {
    inherit nixpkgs supportedSystems;
    inherit nixpkgs;
    officialRelease = false;
  };

+1 −1
Original line number Diff line number Diff line
@@ -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; };