about summary refs log tree commit diff
path: root/pkgs/by-name/se/segger-jlink/qt4-bundled.nix
blob: b1cce1f4a351efd7eae9746a707d8ccb25974c71 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
  lib
, stdenv
, src
, version
, autoPatchelfHook
, fontconfig
, xorg
}:

stdenv.mkDerivation {
  pname = "segger-jlink-qt4";
  inherit src version;

  nativeBuildInputs = [
    autoPatchelfHook
  ];

  buildInputs = [
    stdenv.cc.cc.lib
    fontconfig
    xorg.libXrandr
    xorg.libXfixes
    xorg.libXcursor
    xorg.libSM
    xorg.libICE
    xorg.libX11
  ];

  dontConfigure = true;
  dontBuild = true;

  installPhase = ''
    runHook preInstall

    # Install libraries
    mkdir -p $out/lib
    mv libQt* $out/lib

    runHook postInstall
  '';

  meta = with lib; {
    description = "Bundled QT4 libraries for the J-Link Software and Documentation pack";
    homepage = "https://www.segger.com/downloads/jlink/#J-LinkSoftwareAndDocumentationPack";
    license = licenses.lgpl21;
    maintainers = with maintainers; [ stargate01 ];
    knownVulnerabilities = [
      "This bundled version of Qt 4 has reached its end of life after 2015. See https://github.com/NixOS/nixpkgs/pull/174634"
      "CVE-2023-43114"
      "CVE-2023-38197"
      "CVE-2023-37369"
      "CVE-2023-34410"
      "CVE-2023-32763"
      "CVE-2023-32762"
      "CVE-2023-32573"
      "CVE-2022-25634"
      "CVE-2020-17507"
      "CVE-2020-0570"
      "CVE-2018-21035"
      "CVE-2018-19873"
      "CVE-2018-19871"
      "CVE-2018-19870"
      "CVE-2018-19869"
      "CVE-2015-1290"
      "CVE-2014-0190"
      "CVE-2013-0254"
      "CVE-2012-6093"
      "CVE-2012-5624"
      "CVE-2009-2700"
    ];
  };
}