mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
28 lines
358 B
Nix
28 lines
358 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
kirigami-addons,
|
|
pkg-config,
|
|
bison,
|
|
flex,
|
|
gmp,
|
|
mpfr,
|
|
libqalculate,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kalk";
|
|
|
|
extraNativeBuildInputs = [
|
|
pkg-config
|
|
bison
|
|
flex
|
|
];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
kirigami-addons
|
|
gmp
|
|
mpfr
|
|
libqalculate
|
|
];
|
|
meta.mainProgram = "kalk";
|
|
}
|