mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
499 B
Nix
20 lines
499 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
akonadi, kcalcore, kdelibs4support, kholidays, kidentitymanagement,
|
|
kpimtextedit,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kalarmcal";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
akonadi kcalcore kdelibs4support kholidays kidentitymanagement kpimtextedit
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|