haskellPackages.{evdev,evdev-streamly}: mark as linux only

This commit is contained in:
Ellie Hermaszewska 2022-09-10 18:09:16 +08:00
parent 7c4b5a896f
commit 8edc6b340b
No known key found for this signature in database
GPG key ID: C8116E3A0C1CA76A
2 changed files with 4 additions and 0 deletions

View file

@ -538,6 +538,8 @@ supported-platforms:
dx9base: [ platforms.windows ]
dx9d3d: [ platforms.windows ]
dx9d3dx: [ platforms.windows ]
evdev: [ platforms.linux ]
evdev-streamly: [ platforms.linux ]
geomancy: [ platforms.x86 ] # x86 intrinsics
gi-gtkosxapplication: [ platforms.darwin ]
gtk-mac-integration: [ platforms.darwin ]

View file

@ -92895,6 +92895,7 @@ self: {
];
description = "Bindings to libevdev";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
}) {inherit (pkgs) libevdev;};
"evdev-streamly" = callPackage
@ -92912,6 +92913,7 @@ self: {
];
description = "Bridge for working with evdev and streamly";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
}) {};
"eve" = callPackage