dsview: 1.2.2 -> 1.3.0

The new version is also Qt 6 compatible, so use this opportunity to
switch to Qt 6.
This commit is contained in:
Lorenz Brun 2023-08-06 22:29:50 +02:00
parent eb746c3fcd
commit c317e99ee7
2 changed files with 8 additions and 8 deletions

View File

@ -1,18 +1,18 @@
{ lib, mkDerivation, fetchFromGitHub, pkg-config, cmake
, libzip, boost, fftw, qtbase, libusb1
{ stdenv, lib, fetchFromGitHub, pkg-config, cmake, wrapQtAppsHook
, libzip, boost, fftw, qtbase, qtwayland, qtsvg, libusb1
, python3, fetchpatch
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "dsview";
version = "1.2.2";
version = "1.3.0";
src = fetchFromGitHub {
owner = "DreamSourceLab";
repo = "DSView";
rev = "v${version}";
sha256 = "sha256-QaCVu/n9PDbAiJgPDVN6SJMILeUO/KRkKcHYAstm86Q=";
sha256 = "sha256-wnBVhZ3Ky9PXs48OVvSbD1aAUSEqAwaNLg7Ntim7yFM=";
};
patches = [
@ -20,10 +20,10 @@ mkDerivation rec {
./install.patch
];
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
buildInputs = [
boost fftw qtbase libusb1 libzip
boost fftw qtbase qtwayland qtsvg libusb1 libzip
python3
];

View File

@ -7391,7 +7391,7 @@ with pkgs;
dropbear = callPackage ../tools/networking/dropbear { };
dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { };
dsview = qt6Packages.callPackage ../applications/science/electronics/dsview { };
dtach = callPackage ../tools/misc/dtach { };