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

  

             
                  

                                                        
                                                            




                                                         



                              
{
  mkDerivation, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kparts, ktexteditor, kwidgetsaddons, libkomparediff2
}:

let
  unwrapped =
    mkDerivation {
      name = "kompare";
      meta = { license = with lib.licenses; [ gpl2 ]; };
      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
      propagatedBuildInputs = [
        kparts ktexteditor kwidgetsaddons libkomparediff2
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/kompare" ];
}