about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorGreg Price <gnprice@gmail.com>2020-04-06 20:32:19 -0700
committerGreg Price <gnprice@gmail.com>2020-04-06 21:26:52 -0700
commit7547cf9dfcc36a36939d3b97ca766f64a1012ad3 (patch)
tree2003f9483834c38a0829e1b6add1a293fb9b699c /pkgs/applications/misc
parent71b1be330576e70f82cfdf3e48cc0b4b4d51628c (diff)
downloadnixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar.gz
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar.bz2
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar.lz
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar.xz
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.tar.zst
nixlib-7547cf9dfcc36a36939d3b97ca766f64a1012ad3.zip
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.)
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/far2l/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/far2l/default.nix b/pkgs/applications/misc/far2l/default.nix
index 7c6573630a15..572ec3dda15e 100644
--- a/pkgs/applications/misc/far2l/default.nix
+++ b/pkgs/applications/misc/far2l/default.nix
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
     wrapProgram $out/bin/far2l --argv0 $out/bin/far2l
   '';
 
-  stripDebugList = "bin share";
+  stripDebugList = [ "bin" "share" ];
 
   enableParallelBuilding = true;