summary refs log blame commit diff
path: root/pkgs/applications/kde/keditbookmarks.nix
blob: 57741c03ad54773ad7c2232b5b6ab192823558f6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















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

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