mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
1,012 B
Nix
32 lines
1,012 B
Nix
{ mkDerivation, lib, fetchFromGitHub, makeWrapper, cmake, qtbase, qttools, fftw, libusb1, libglvnd }:
|
|
|
|
mkDerivation rec {
|
|
pname = "openhantek6022";
|
|
version = "3.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenHantek";
|
|
repo = "OpenHantek6022";
|
|
rev = version;
|
|
sha256 = "1n4l8ks5808d99zj1vj0ck0v1lb9s7iv3ahww7ximbf9iha39pbm";
|
|
};
|
|
|
|
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";
|
|
homepage = "https://github.com/OpenHantek/OpenHantek6022";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ baracoder ];
|
|
platforms = qtbase.meta.platforms;
|
|
};
|
|
}
|