mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
ce77225e21
This is the thing you want to look at.
14 lines
188 B
Nix
14 lines
188 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
gmp,
|
|
mpfr,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kcalc";
|
|
|
|
extraNativeBuildInputs = [kdoctools];
|
|
extraBuildInputs = [qt5compat gmp mpfr];
|
|
}
|