mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
49dce7182f
Currently stlink build fails on macOS since version 1.7.0 didn't contain
468b1d2daa
commit from upstream. This commit adds dependency on Security framework
required for libusb.
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, libusb1
|
|
, gtk3
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
, withGUI ? false
|
|
}:
|
|
|
|
let
|
|
# The Darwin build of stlink explicitly refers to static libusb.
|
|
libusb1' = if stdenv.isDarwin then libusb1.override { withStatic = true; } else libusb1;
|
|
|
|
# IMPORTANT: You need permissions to access the stlink usb devices.
|
|
# Add services.udev.packages = [ pkgs.stlink ] to your configuration.nix
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "stlink";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stlink-org";
|
|
repo = "stlink";
|
|
rev = "v${version}";
|
|
sha256 = "03xypffpbp4imrczbxmq69vgkr7mbp0ps9dk815br5wwlz6vgygl";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/stlink-org/stlink/commit/468b1d2daa853b975c33ab69876c486734f2c6a7.diff";
|
|
sha256 = "sha256-ueSi/zc7xbOATl0yBtCL4U64IQ/yqu6sMYDOiPl1JBI=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1'
|
|
] ++ lib.optionals withGUI [
|
|
gtk3
|
|
];
|
|
nativeBuildInputs = [
|
|
cmake
|
|
] ++ lib.optionals withGUI [
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DSTLINK_MODPROBED_DIR=${placeholder "out"}/etc/modprobe.d"
|
|
"-DSTLINK_UDEV_RULES_DIR=${placeholder "out"}/lib/udev/rules.d"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "In-circuit debug and programming for ST-Link devices";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.bjornfor maintainers.rongcuid ];
|
|
};
|
|
}
|