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



                                                      
                                              

                                                   
 
{ mkDerivation, lib, extra-cmake-modules, kconfig, ki18n, kservice, kxmlgui }:

mkDerivation {
  pname = "libkipi";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kconfig ki18n kservice kxmlgui ];
  outputs = [ "out" "dev" ];
}