forked from mirrors/nixpkgs
bustle: remove darwin from platforms
The build fails due to the usage of unportable glibc functions. Since there is probably little interest in bustle on darwin, there is no real value in attempting to patch this.
This commit is contained in:
parent
d1f97a0dfb
commit
7144de747b
|
@ -322,6 +322,7 @@ unsupported-platforms:
|
|||
bdcs-api: [ x86_64-darwin ]
|
||||
bindings-directfb: [ x86_64-darwin ]
|
||||
bindings-sane: [ x86_64-darwin ]
|
||||
bustle: [ x86_64-darwin ] # uses glibc-specific ptsname_r
|
||||
charsetdetect: [ aarch64-linux ] # not supported by vendored lib / not configured properly https://github.com/batterseapower/libcharsetdetect/issues/3
|
||||
crackNum: [ aarch64-linux ] # depends on sbv, which is not supported on aarch64-linux
|
||||
cut-the-crap: [ x86_64-darwin ]
|
||||
|
|
|
@ -46786,6 +46786,9 @@ self: {
|
|||
testPkgconfigDepends = [ gio-unix ];
|
||||
description = "Draw sequence diagrams of D-Bus traffic";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
platforms = [
|
||||
"aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux"
|
||||
];
|
||||
}) {gio-unix = null; inherit (pkgs) libpcap;
|
||||
system-glib = pkgs.glib;};
|
||||
|
||||
|
|
Loading…
Reference in a new issue