about summary refs log tree commit diff
path: root/pkgs/development/misc/avr
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-04-14 15:54:52 +0200
committerGitHub <noreply@github.com>2020-04-14 15:54:52 +0200
commit401e07d41981561e328d2ddc667ca96e1d5ef325 (patch)
treea8970aabf91f9c5268aefb7b7a5c66fd2ec37aa5 /pkgs/development/misc/avr
parent5d2cb158f390804aeaff1a7f1c0dc45665c9d1f9 (diff)
parent53d61f91d2467f6f3b9186dd3a7b51b491311fc2 (diff)
Merge pull request #84551 from gnprice/pr-stripDebugList
treewide: Fix types of stripDebugList attrs (and fix doc)
Diffstat (limited to 'pkgs/development/misc/avr')
-rw-r--r--pkgs/development/misc/avr/libc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/misc/avr/libc/default.nix b/pkgs/development/misc/avr/libc/default.nix
index fdff792648cfd..6682f72c62de6 100644
--- a/pkgs/development/misc/avr/libc/default.nix
+++ b/pkgs/development/misc/avr/libc/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ automake autoconf ];
 
   # Make sure we don't strip the libraries in lib/gcc/avr.
-  stripDebugList = "bin";
+  stripDebugList = [ "bin" ];
   dontPatchELF = true;
 
   passthru = {