blob: 48abd759ca1a3b84c223bb731ada1b893e2253ee [file] [log] [blame]
Skyler Grey252927a2022-10-18 22:18:15 +01001{ stdenv
2, #qt5-declarative,
3 libsForQt5
4, extra-cmake-modules
5, #kdoctools,
6 eigen
7, #qt5-tools,
8 fetchurl
9,
Skyler Greye6acc162022-10-31 00:19:37 +000010}:
11stdenv.mkDerivation {
12 pname = "analitza";
13 version = "21.12.2";
14 dontWrapQtApps = true;
15
16 src = fetchurl {
17 url = "https://download.kde.org/stable/release-service/21.12.2/src/analitza-21.12.2.tar.xz";
18 sha256 = "a4c52d0ea51870495c2da25a58c7495af14e9d71a380d20aea9c1dd39de762aa";
19 };
20
21 buildInputs = [ extra-cmake-modules ];
22 nativeBuildInputs = [
23 libsForQt5.qt5.qtdeclarative
24 libsForQt5.kdoctools
25 libsForQt5.qt5.qttools
26 eigen
27 ];
28}