mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
713 B
Nix
23 lines
713 B
Nix
{ lib, stdenv, fetchurl, pkg-config, udev, darwin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libserialport-0.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://sigrok.org/download/source/libserialport/${name}.tar.gz";
|
|
sha256 = "17ajlwgvyyrap8z7f16zcs59pksvncwbmd3mzf98wj7zqgczjaja";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = lib.optional stdenv.isLinux udev
|
|
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.IOKit;
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform shared library for serial port access";
|
|
homepage = "https://sigrok.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|