Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
cmake,
|
|
qtbase,
|
|
qttools,
|
|
fftw,
|
|
libusb1,
|
|
libglvnd,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "openhantek6022";
|
|
version = "3.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenHantek";
|
|
repo = "OpenHantek6022";
|
|
rev = version;
|
|
sha256 = "sha256-FT+DyfD5WHBblRXWXFnyB2xwoIgoh84oB+QN32wx78c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
];
|
|
buildInputs = [
|
|
fftw
|
|
libusb1
|
|
libglvnd
|
|
qtbase
|
|
qttools
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix up install paths & checks
|
|
sed -i 's#if(EXISTS ".*")#if(1)#g' CMakeLists.txt
|
|
sed -i 's#/lib/udev#lib/udev#g' CMakeLists.txt
|
|
sed -i 's#/usr/share#share#g' CMakeLists.txt
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Free software for Hantek and compatible (Voltcraft/Darkwire/Protek/Acetech) USB digital signal oscilloscopes";
|
|
mainProgram = "OpenHantek";
|
|
homepage = "https://github.com/OpenHantek/OpenHantek6022";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ baracoder ];
|
|
platforms = qtbase.meta.platforms;
|
|
};
|
|
}
|