aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/science/electronics/dsview/default.nix
blob: e61017ea330da7e3934abaec32aa1330838e10fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib, mkDerivation, fetchFromGitHub, pkgconfig, cmake
, libzip, boost, fftw, qtbase, libusb1, libsigrok4dsl
, libsigrokdecode4dsl, python3, fetchpatch
}:

mkDerivation rec {
  pname = "dsview";

  version = "1.12";

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

  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 ];

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

  enableParallelBuilding = true;

  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 = with maintainers; [ bachp ];
  };
}