blob: 5a9d3440c2a406fd2202353da3080f82e5f86981 (
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
|
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
qt6,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "jkqtplotter";
version = "5.0.0-unstable-2025-12-26";
src = fetchFromGitHub {
owner = "jkriege2";
repo = "JKQtPlotter";
rev = "ff89c53057ab15ac6dd7b9ebfd6713cef0ce9676";
hash = "sha256-rx1TWDAXHFo+LgylfkPqWIiHAJ9FKsQ4s9QSFHiBHC8=";
};
nativeBuildInputs = [
cmake
qt6.wrapQtAppsHook
];
buildInputs = [
qt6.qttools
];
meta = {
description = "Qt plotting framework";
maintainers = [ lib.maintainers.sheepforce ];
homepage = "https://github.com/jkriege2/JKQtPlotter";
license = lib.licenses.lgpl21Plus;
};
})
|