mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
elf2uf2-rs: support darwin
This commit is contained in:
parent
2a5f6cac35
commit
62b322de1c
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, rustPlatform, fetchCrate, pkg-config, udev }:
|
||||
{ lib, stdenv, rustPlatform, fetchCrate, pkg-config, udev, CoreFoundation, DiskArbitration, Foundation }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "elf2uf2-rs";
|
||||
@ -13,9 +13,12 @@ rustPlatform.buildRustPackage rec {
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
udev
|
||||
];
|
||||
buildInputs = lib.optional stdenv.isLinux udev
|
||||
++ lib.optionals stdenv.isDarwin [
|
||||
CoreFoundation
|
||||
DiskArbitration
|
||||
Foundation
|
||||
];
|
||||
|
||||
cargoSha256 = "sha256-+3Rqlzkrw9XfM3PelGNbnRGaWQLbzVJ7iJgvGgVt5FE=";
|
||||
|
||||
@ -23,7 +26,7 @@ rustPlatform.buildRustPackage rec {
|
||||
description = "Convert ELF files to UF2 for USB Flashing Bootloaders";
|
||||
homepage = "https://github.com/JoNil/elf2uf2-rs";
|
||||
license = with licenses; [ bsd0 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ polygon ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ polygon fortuneteller2k ];
|
||||
};
|
||||
}
|
||||
|
@ -18747,7 +18747,9 @@ with pkgs;
|
||||
|
||||
electron-fiddle = callPackage ../development/tools/electron-fiddle { };
|
||||
|
||||
elf2uf2-rs = callPackage ../development/embedded/elf2uf2-rs { };
|
||||
elf2uf2-rs = darwin.apple_sdk_11_0.callPackage ../development/embedded/elf2uf2-rs {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation DiskArbitration Foundation;
|
||||
};
|
||||
|
||||
elfinfo = callPackage ../development/tools/misc/elfinfo { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user