fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, pkg-config
|
|
, cmake
|
|
, glib
|
|
, boost
|
|
, libsigrok
|
|
, libsigrokdecode
|
|
, libserialport
|
|
, libzip
|
|
, libftdi1
|
|
, hidapi
|
|
, glibmm
|
|
, pcre
|
|
, python3
|
|
, qtsvg
|
|
, qttools
|
|
, bluez
|
|
, wrapQtAppsHook
|
|
, desktopToDarwinBundle
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pulseview";
|
|
version = "0.4.2-unstable-2024-03-14";
|
|
|
|
src = fetchgit {
|
|
url = "git://sigrok.org/pulseview";
|
|
rev = "d00efc65ef47090b71c4da12797056033bee795f";
|
|
hash = "sha256-MwfMUqV3ejxesg+3cFeXVB5hwg4r0cOCgHJuH3ZLmNE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
wrapQtAppsHook
|
|
] ++ lib.optional stdenv.isDarwin desktopToDarwinBundle;
|
|
|
|
buildInputs = [
|
|
glib
|
|
boost
|
|
libsigrok
|
|
libsigrokdecode
|
|
libserialport
|
|
libzip
|
|
libftdi1
|
|
hidapi
|
|
glibmm
|
|
pcre
|
|
python3
|
|
qtsvg
|
|
] ++ lib.optionals stdenv.isLinux [ bluez ];
|
|
|
|
meta = with lib; {
|
|
description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)";
|
|
mainProgram = "pulseview";
|
|
homepage = "https://sigrok.org/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bjornfor vifino ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|