mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
14 lines
278 B
Nix
14 lines
278 B
Nix
{ kde, kdelibs, libspectre, analitza, R, pkgconfig, libqalculate }:
|
|
kde {
|
|
|
|
# TODO: R is not found
|
|
|
|
buildInputs = [ kdelibs libspectre analitza R libqalculate];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
description = "KDE Frontend to Mathematical Software";
|
|
};
|
|
}
|