76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
21 lines
551 B
Nix
21 lines
551 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
grantlee, kcalcore, kconfig, kontactinterface, kcoreaddons, kdelibs4support,
|
|
kidentitymanagement, kpimtextedit,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcalutils";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
grantlee kcalcore kconfig kontactinterface kcoreaddons kdelibs4support
|
|
kidentitymanagement kpimtextedit
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|