repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
analitza.nix
blob
2ddd8cfbb821ff351c65b0237335f6bb087bb9e6
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, qtbase
6
, qtsvg
7
, eigen
8
, kdoctools
9
, qttools
10
}:
11
12
mkDerivation {
13
pname = "analitza";
14
15
nativeBuildInputs = [
16
cmake
17
eigen
18
extra-cmake-modules
19
kdoctools
20
qttools
21
];
22
23
buildInputs = [
24
qtbase
25
qtsvg
26
];
27
28
meta = with lib; {
29
description = "Front end to powerful mathematics and statistics packages";
30
homepage = "https://cantor.kde.org/";
31
license = with licenses; [ gpl2Only lgpl2Only fdl12Only ];
32
maintainers = with maintainers; [ hqurve ];
33
};
34
}