62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
wrapQtAppsHook,
|
|
libzip,
|
|
boost,
|
|
fftw,
|
|
libusb1,
|
|
qtbase,
|
|
qtsvg,
|
|
qtwayland,
|
|
python3,
|
|
desktopToDarwinBundle,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dsview";
|
|
|
|
version = "2024-11-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DreamSourceLab";
|
|
repo = "DSView";
|
|
rev = "2e9e2c8e726df4ef5687d39b83d4f797cc44b574";
|
|
sha256 = "sha256-F7T3wEasIzfhQXVaU8MVo06h3RB1nhWxkp2sUb8Ct80=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix absolute install paths
|
|
./install.patch
|
|
];
|
|
|
|
# /build/source/libsigrok4DSL/strutil.c:343:19: error: implicit declaration of function 'strcasecmp'; did you mean 'g_strcasecmp'? []
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration -Wno-error=format-security";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
|
|
|
|
buildInputs = [
|
|
boost
|
|
fftw
|
|
qtbase
|
|
qtsvg
|
|
libusb1
|
|
libzip
|
|
python3
|
|
] ++ lib.optional stdenv.hostPlatform.isLinux qtwayland;
|
|
|
|
meta = {
|
|
description = "GUI program for supporting various instruments from DreamSourceLab, including logic analyzer, oscilloscope, etc";
|
|
mainProgram = "DSView";
|
|
homepage = "https://www.dreamsourcelab.com/";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|