mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
844c32097b
Signed-off-by: Felix Singer <felixsinger@posteo.net>
44 lines
935 B
Nix
44 lines
935 B
Nix
{
|
|
fetchFromGitLab,
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
libusb1,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libjaylink";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.zapb.de";
|
|
owner = "libjaylink";
|
|
repo = "libjaylink";
|
|
rev = version;
|
|
hash = "sha256-odJDE1A0WZ9vBXPxaUdthjTgmbmbdHjbyY1PkaM4+vI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [ libusb1 ];
|
|
|
|
postPatch = ''
|
|
patchShebangs autogen.sh
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 contrib/99-libjaylink.rules $out/lib/udev/rules.d/libjaylink.rules
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.zapb.de/libjaylink/libjaylink";
|
|
description = "libjaylink is a shared library written in C to access SEGGER J-Link and compatible devices";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ felixsinger ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|