mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
49 lines
955 B
Nix
49 lines
955 B
Nix
|
{ lib
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, pkg-config
|
||
|
, stdenv
|
||
|
# Package dependencies
|
||
|
, qt6
|
||
|
, libusb1
|
||
|
, protobuf
|
||
|
, asio
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "hidviz";
|
||
|
version = "0.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hidviz";
|
||
|
repo = "hidviz";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-9crHFYVNNxJjwJojwqB8qdAGyr1Ieux9qC3m3rpIJw0=";
|
||
|
};
|
||
|
|
||
|
preConfigure = ''
|
||
|
substituteInPlace libhidx/cmake_modules/Findasio.cmake --replace-fail '/usr/include/asio' '${lib.getDev asio}/include/asio'
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
qt6.qttools
|
||
|
qt6.wrapQtAppsHook
|
||
|
];
|
||
|
buildInputs = [
|
||
|
qt6.qtwebengine
|
||
|
libusb1
|
||
|
protobuf
|
||
|
asio
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/hidviz/hidviz";
|
||
|
description = "A GUI application for in-depth analysis of USB HID class devices.";
|
||
|
license = licenses.gpl3Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ nayala ];
|
||
|
};
|
||
|
}
|