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






                                 
                           


                                                        
                                    




                                                        
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kio, kparts, kwindowsystem
}:

mkDerivation {
  pname = "keditbookmarks";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kio kparts kwindowsystem ];
  meta = with lib; {
    homepage = "http://www.kde.org";
    license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
    maintainers = with maintainers; [ peterhoeg ];
    platforms = platforms.linux;
  };
}