Skip to content

Commit

Permalink
Merge pull request #104171 from freezeboy/unbreak-dsview-qt515
Browse files Browse the repository at this point in the history
dsview: 0.99 -> 1.12
  • Loading branch information
doronbehar committed Nov 28, 2020
2 parents 60d99d7 + 00b385c commit 56a2c8b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 19 deletions.
32 changes: 18 additions & 14 deletions pkgs/applications/science/electronics/dsview/default.nix
Original file line number Diff line number Diff line change
@@ -1,42 +1,46 @@
{ stdenv, fetchFromGitHub, pkgconfig, cmake,
libzip, boost, fftw, qtbase,
libusb1, wrapQtAppsHook, libsigrok4dsl, libsigrokdecode4dsl
{ lib, mkDerivation, fetchFromGitHub, pkgconfig, cmake
, libzip, boost, fftw, qtbase, libusb1, libsigrok4dsl
, libsigrokdecode4dsl, python3, fetchpatch
}:

stdenv.mkDerivation rec {
mkDerivation rec {
pname = "dsview";

version = "0.99";
version = "1.12";

src = fetchFromGitHub {
owner = "DreamSourceLab";
repo = "DSView";
rev = version;
sha256 = "189i3baqgn8k3aypalayss0g489xi0an9hmvyggvxmgg1cvcwka2";
rev = "v${version}";
sha256 = "q7F4FuK/moKkouXTNPZDVon/W/ZmgtNHJka4MiTxA0U=";
};

postUnpack = ''
export sourceRoot=$sourceRoot/DSView
'';
sourceRoot = "source/DSView";

patches = [
# Fix absolute install paths
./install.patch

# Fix buld with Qt5.15 already merged upstream for future release
# Using local file instead of content of commit #33e3d896a47 because
# sourceRoot make it unappliable
./qt515.patch
];

nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
nativeBuildInputs = [ cmake pkgconfig ];

buildInputs = [
boost fftw qtbase libusb1 libzip libsigrokdecode4dsl libsigrok4dsl
boost fftw qtbase libusb1 libzip libsigrokdecode4dsl libsigrok4dsl
python3
];

enableParallelBuilding = true;

meta = with stdenv.lib; {
meta = with lib; {
description = "A GUI program for supporting various instruments from DreamSourceLab, including logic analyzer, oscilloscope, etc";
homepage = "https://www.dreamsourcelab.com/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bachp ];
maintainers = with maintainers; [ bachp ];
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/science/electronics/dsview/install.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1c33e1..208a184 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -403,8 +403,8 @@ install(DIRECTORY res DESTINATION share/${PROJECT_NAME})
install(FILES icons/logo.png DESTINATION share/${PROJECT_NAME} RENAME logo.png)
install(FILES ../NEWS DESTINATION share/${PROJECT_NAME} RENAME NEWS)
install(FILES ../ug.pdf DESTINATION share/${PROJECT_NAME} RENAME ug.pdf)
@@ -427,8 +427,8 @@
install(FILES ../NEWS31 DESTINATION share/${PROJECT_NAME} RENAME NEWS31)
install(FILES ../ug25.pdf DESTINATION share/${PROJECT_NAME} RENAME ug25.pdf)
install(FILES ../ug31.pdf DESTINATION share/${PROJECT_NAME} RENAME ug31.pdf)
-install(FILES DreamSourceLab.rules DESTINATION /etc/udev/rules.d/)
-install(FILES DSView.desktop DESTINATION /usr/share/applications/)
+install(FILES DreamSourceLab.rules DESTINATION etc/udev/rules.d/)
Expand Down
13 changes: 13 additions & 0 deletions pkgs/applications/science/electronics/dsview/qt515.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp
index 921d3db..16cdce9 100755
--- a/pv/view/viewport.cpp
+++ b/pv/view/viewport.cpp
@@ -37,7 +37,7 @@

#include <QMouseEvent>
#include <QStyleOption>
-
+#include <QPainterPath>

#include <math.h>

2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3430,7 +3430,7 @@ in

dropbear = callPackage ../tools/networking/dropbear { };

dsview = libsForQt514.callPackage ../applications/science/electronics/dsview { };
dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { };

dtach = callPackage ../tools/misc/dtach { };

Expand Down

0 comments on commit 56a2c8b

Please sign in to comment.