1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

buildRubyGem: fix buildFlags default attribute

lib.escapeShellArgs doesn't work well when a null value is provided.

[] is also the correct value since it's really just an empty list of
arguments that we have.
This commit is contained in:
zimbatm 2016-07-21 11:42:28 +01:00
parent c31ae2ae8a
commit 838781ce8a

View file

@ -48,7 +48,7 @@ lib.makeOverridable (
, dontBuild ? true , dontBuild ? true
, propagatedBuildInputs ? [] , propagatedBuildInputs ? []
, propagatedUserEnvPkgs ? [] , propagatedUserEnvPkgs ? []
, buildFlags ? null , buildFlags ? []
, passthru ? {} , passthru ? {}
, ...} @ attrs: , ...} @ attrs: