about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 08:11:16 +0100
committerGitHub <noreply@github.com>2021-01-10 08:11:16 +0100
commiteeee857ef828143ab189bbfa9fdb53e26b36e7a2 (patch)
tree2d64ec6870eba5e0ce49fbf7b25103237be05f6e
parent345206baf3257ce14d1ae49169f9004022d1c474 (diff)
parentd5eb22ffe3772f6c30f0347e359b5fd1028c1cfc (diff)
downloadnixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar.gz
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar.bz2
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar.lz
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar.xz
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.tar.zst
nixlib-eeee857ef828143ab189bbfa9fdb53e26b36e7a2.zip
Merge pull request #108875 from dbueno/fix/cflow-darwin-update
cflow: include darwin
-rw-r--r--pkgs/development/tools/misc/cflow/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/development/tools/misc/cflow/default.nix b/pkgs/development/tools/misc/cflow/default.nix
index 1215c29c4776..8c271bd76732 100644
--- a/pkgs/development/tools/misc/cflow/default.nix
+++ b/pkgs/development/tools/misc/cflow/default.nix
@@ -45,13 +45,6 @@ stdenv.mkDerivation rec {
 
     maintainers = [ maintainers.vrthra ];
 
-    /* On Darwin, build fails with:
-
-       Undefined symbols:
-         "_argp_program_version", referenced from:
-             _argp_program_version$non_lazy_ptr in libcflow.a(argp-parse.o)
-       ld: symbol(s) not found
-     */
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
   };
 }