mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
17 lines
286 B
Nix
17 lines
286 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
extra-cmake-modules,
|
|
libical
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcalendarcore";
|
|
meta = {
|
|
maintainers = [ lib.maintainers.nyanloutre ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ libical ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|