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