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



                                                      
                                              

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

mkDerivation {
  name = "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" ];
}