mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, mkDerivation, fetchFromGitHub
|
|
, cmake, pkg-config, pffft, libpcap, libusb1, python3, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hobbits";
|
|
version = "0.54.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Mahlet-Inc";
|
|
repo = "hobbits";
|
|
rev = "v${version}";
|
|
hash = "sha256-zbpYVoWOffMxx2RS5gXw+rpwdxoRutH/yzZqJIc57UU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/hobbits-core/settingsdata.cpp \
|
|
--replace "pythonHome = \"/usr\"" "pythonHome = \"${python3}\""
|
|
substituteInPlace cmake/gitversion.cmake \
|
|
--replace "[Mystery Build]" "${version}"
|
|
'';
|
|
|
|
buildInputs = [ pffft libpcap libusb1 python3 ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
|
|
|
cmakeFlags = [ "-DUSE_SYSTEM_PFFFT=ON" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isAarch64 "-Wno-error=narrowing";
|
|
|
|
meta = with lib; {
|
|
description = "A multi-platform GUI for bit-based analysis, processing, and visualization";
|
|
homepage = "https://github.com/Mahlet-Inc/hobbits";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|