depot/pkgs/kde/gear/kcalc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
208 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qt5compat,
gmp,
mpfr,
kdoctools,
}:
mkKdeDerivation {
pname = "kcalc";
extraBuildInputs = [
qt5compat
gmp
mpfr
kdoctools
];
meta.mainProgram = "kcalc";
}