summary refs log blame commit diff
path: root/pkgs/applications/kde/libgravatar.nix
blob: 0335ded006521f66d969379227059d3838ffa56a (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                       
                        
          
                                                                   






                                                        



                                                                                       
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  kconfig, kio, ktextwidgets, kwidgetsaddons, pimcommon
}:

mkDerivation {
  pname = "libgravatar";
  meta = {
    license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    kconfig kio ktextwidgets kwidgetsaddons pimcommon
  ];
  outputs = [ "out" "dev" ];
  postInstall = ''
    # added as an include directory by cmake files and fails to compile if it's missing
    mkdir -p "$dev/include/KF5"
  '';
}