mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
19 lines
208 B
Nix
19 lines
208 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
gmp,
|
|
mpfr,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kcalc";
|
|
|
|
extraBuildInputs = [
|
|
qt5compat
|
|
gmp
|
|
mpfr
|
|
kdoctools
|
|
];
|
|
meta.mainProgram = "kcalc";
|
|
}
|