mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
16 lines
187 B
Nix
16 lines
187 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
libical,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kcalendarcore";
|
|
|
|
hasPythonBindings = true;
|
|
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
libical
|
|
];
|
|
}
|