3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/electronics/openhantek6022/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1,004 B
Nix
Raw Normal View History

2020-07-21 23:05:17 +01:00
{ mkDerivation, lib, fetchFromGitHub, makeWrapper, cmake, qtbase, qttools, fftw, libusb1, libglvnd }:
mkDerivation rec {
pname = "openhantek6022";
2022-02-12 20:37:00 +00:00
version = "3.2.5";
2020-07-21 23:05:17 +01:00
src = fetchFromGitHub {
owner = "OpenHantek";
repo = "OpenHantek6022";
rev = version;
2022-02-12 20:37:00 +00:00
sha256 = "sha256-QwJmbABAax4yCbcRONArtj5EUKO1gh3pVoLi2hF/WJI=";
2020-07-21 23:05:17 +01:00
};
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
'';
meta = with lib; {
description = "Free software for Hantek and compatible (Voltcraft/Darkwire/Protek/Acetech) USB digital signal oscilloscopes";
2021-06-25 06:42:23 +01:00
homepage = "https://github.com/OpenHantek/OpenHantek6022";
license = licenses.gpl3;
2020-07-21 23:05:17 +01:00
maintainers = with maintainers; [ baracoder ];
platforms = qtbase.meta.platforms;
};
}