srcOnly: remove the ellipsis (#80903)

The function doesn't make use of the extra arguments.
This commit is contained in:
zimbatm 2020-02-24 23:12:37 +00:00 committed by GitHub
parent c5cd289b13
commit b32a057425
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";