treewide: Fix up stripDebugList attrs to be lists.

The documentation says this should be a list, and it already is in
about half the expressions that set it.

The difference doesn't matter at present, because these values are all
space-free literals.  But it will in a future with __structuredAttrs .

(The similar attr stripAllList has no users in the nixpkgs tree, so
there's nothing to do to fix any of those up.)
This commit is contained in:
Greg Price
2020-04-06 21:26:52 -07:00
parent 71b1be3305
commit 7547cf9dfc
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/far2l --argv0 $out/bin/far2l
'';
stripDebugList = "bin share";
stripDebugList = [ "bin" "share" ];
enableParallelBuilding = true;