Merge pull request #85680 from NixOS/fix-srconly

srcOnly: ignore additional arguments
This commit is contained in:
edef 2020-04-21 22:45:34 +00:00 committed by GitHub
commit e71990711f
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";