From b32a057425b337b37db41d3b4a67d39657477c05 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 24 Feb 2020 23:12:37 +0000 Subject: [PATCH] srcOnly: remove the ellipsis (#80903) The function doesn't make use of the extra arguments. --- pkgs/build-support/src-only/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/src-only/default.nix b/pkgs/build-support/src-only/default.nix index a93b3648090..c2f7cfb9399 100644 --- a/pkgs/build-support/src-only/default.nix +++ b/pkgs/build-support/src-only/default.nix @@ -1,4 +1,4 @@ -{stdenv, name, src, patches ? [], buildInputs ? [], ...}: +{ stdenv, name, src, patches ? [], buildInputs ? [] }: stdenv.mkDerivation { inherit src buildInputs patches name; installPhase = "cp -r . $out";