about summary refs log tree commit diff
path: root/pkgs/development
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
parent5d2cb158f390804aeaff1a7f1c0dc45665c9d1f9 (diff)
parent53d61f91d2467f6f3b9186dd3a7b51b491311fc2 (diff)
downloadnixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar.gz
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar.bz2
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar.lz
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar.xz
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.tar.zst
nixlib-401e07d41981561e328d2ddc667ca96e1d5ef325.zip
Merge pull request #84551 from gnprice/pr-stripDebugList
treewide: Fix types of stripDebugList attrs (and fix doc)
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/ldb/default.nix2
-rw-r--r--pkgs/development/misc/avr/libc/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ldb/default.nix b/pkgs/development/libraries/ldb/default.nix
index 7ee869b53c35..a0cb8a7762b5 100644
--- a/pkgs/development/libraries/ldb/default.nix
+++ b/pkgs/development/libraries/ldb/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
     "--without-ldb-lmdb"
   ];
 
-  stripDebugList = "bin lib modules";
+  stripDebugList = [ "bin" "lib" "modules" ];
 
   meta = with stdenv.lib; {
     description = "A LDAP-like embedded database";
diff --git a/pkgs/development/misc/avr/libc/default.nix b/pkgs/development/misc/avr/libc/default.nix
index fdff792648cf..6682f72c62de 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 = {