mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
openfpgaloader: add darwin support
This commit is contained in:
parent
f9ac2c657d
commit
ca5af55422
1 changed files with 3 additions and 3 deletions
|
@ -31,16 +31,16 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
hidapi
|
||||
libftdi1
|
||||
libusb1
|
||||
udev
|
||||
zlib
|
||||
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform udev) [
|
||||
udev
|
||||
];
|
||||
|
||||
meta = {
|
||||
broken = stdenv.isDarwin; # error: Package ‘systemd-253.6’ is not available on the requested Darwin platform.
|
||||
description = "Universal utility for programming FPGAs";
|
||||
homepage = "https://github.com/trabucayre/openFPGALoader";
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ danderson ];
|
||||
platforms = lib.platforms.linux;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue