haskellPackages.{bindings-parport,btrfs}: unsupported on darwin

These are both packages which depend on the Linux kernel (or its
headers) and won't work on darwin.
This commit is contained in:
sternenseemann 2021-08-06 03:21:04 +02:00
parent 070d43bcb2
commit df69f9af32
2 changed files with 8 additions and 0 deletions

View File

@ -342,7 +342,9 @@ unsupported-platforms:
barbly: [ i686-linux, x86_64-linux, aarch64-linux, armv7l-linux ]
bdcs-api: [ x86_64-darwin ]
bindings-directfb: [ x86_64-darwin ]
bindings-parport: [ x86_64-darwin ] # parport is a linux kernel component
bindings-sane: [ x86_64-darwin ]
btrfs: [ x86_64-darwin ] # depends on linux
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

View File

@ -41823,6 +41823,9 @@ self: {
libraryHaskellDepends = [ base bindings-DSL ];
description = "parport bindings";
license = lib.licenses.bsd3;
platforms = [
"aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux"
];
}) {};
"bindings-portaudio" = callPackage
@ -46559,6 +46562,9 @@ self: {
libraryHaskellDepends = [ base bytestring time unix ];
description = "Bindings to the btrfs API";
license = lib.licenses.bsd3;
platforms = [
"aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux"
];
}) {};
"buchhaltung" = callPackage