14 lines
294 B
Nix
14 lines
294 B
Nix
|
{ kde, kdelibs, libspectre, analitza, R, pkgconfig, libqalculate, python }:
|
||
|
kde {
|
||
|
|
||
|
# TODO: R is not found
|
||
|
|
||
|
buildInputs = [ kdelibs libspectre analitza R libqalculate python ];
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE Frontend to Mathematical Software";
|
||
|
};
|
||
|
}
|