mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
9e4acec7f2
CMake cross continues to be very scuffed.
14 lines
188 B
Nix
14 lines
188 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
gmp,
|
|
mpfr,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kcalc";
|
|
|
|
extraBuildInputs = [qt5compat gmp mpfr kdoctools];
|
|
meta.mainProgram = "kcalc";
|
|
}
|