forked from mirrors/nixpkgs
GNU Cflow: Don't build on Darwin.
svn path=/nixpkgs/trunk/; revision=17204
This commit is contained in:
parent
ad14f6712c
commit
ebd78c51d0
|
@ -45,5 +45,14 @@ stdenv.mkDerivation rec {
|
|||
homepage = http://www.gnu.org/software/cflow/;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
|
||||
/* 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 = stdenv.lib.platforms.allBut "i686-darwin";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue