mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #85680 from NixOS/fix-srconly
srcOnly: ignore additional arguments
This commit is contained in:
commit
e71990711f
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, name, src, patches ? [], buildInputs ? [] }:
|
{stdenv, name, src, patches ? [], buildInputs ? [], ...}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
inherit src buildInputs patches name;
|
inherit src buildInputs patches name;
|
||||||
installPhase = "cp -r . $out";
|
installPhase = "cp -r . $out";
|
||||||
|
Loading…
Reference in New Issue
Block a user