3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/kde/keditbookmarks.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
454 B
Nix
Raw Normal View History

2017-10-24 15:49:35 +01:00
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
kio, kparts, kwindowsystem
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "keditbookmarks";
2017-10-24 15:49:35 +01:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kio kparts kwindowsystem ];
meta = with lib; {
homepage = "http://www.kde.org";
2022-10-27 21:47:29 +01:00
license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ];
2017-10-24 15:49:35 +01:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}