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





                     

                       
                                                        
                                              



                                            
 
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kdelibs4support
, libkexiv2
}:

mkDerivation {
  name = "kolourpaint";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kdelibs4support libkexiv2 ];
  meta = {
    maintainers = [ lib.maintainers.fridh ];
    license = with lib.licenses; [ gpl2 ];
  };
}