1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, cmake
, glib
, boost
, libsigrok
, libserialport
, libzip
, libftdi1
, hidapi
, glibmm
, python3
, bluez
, pcre
, libsForQt5
, desktopToDarwinBundle
, qt5
}:
stdenv.mkDerivation rec {
pname = "smuview";
version = "0.0.5-unstable-2023-04-12";
src = fetchFromGitHub {
owner = "knarfS";
repo = "smuview";
rev = "a5ffb66287b725ebcdecc1eab04a4574c8585f66";
hash = "sha256-WH8X75yk0aMivbBBOyODcM1eBWwa5UO/3nTaKV1LCGs=";
};
nativeBuildInputs = [ cmake pkg-config qt5.wrapQtAppsHook ]
++ lib.optional stdenv.isDarwin desktopToDarwinBundle;
buildInputs = [
glib
boost
libsigrok
libserialport
libzip
libftdi1
hidapi
glibmm
python3
pcre
libsForQt5.qwt
] ++ lib.optionals stdenv.isLinux [ bluez ];
meta = with lib; {
description = "Qt based source measure unit GUI for sigrok";
mainProgram = "smuview";
longDescription = "SmuView is a GUI for sigrok that supports power supplies, electronic loads and all sorts of measurement devices like multimeters, LCR meters and so on";
homepage = "https://github.com/knarfS/smuview";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vifino ];
platforms = platforms.unix;
};
}
|