mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
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:
parent
eb746c3fcd
commit
c317e99ee7
@ -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
|
||||
];
|
||||
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user