depot/third_party/nixpkgs/pkgs/applications/kde/kruler.nix
Default email 9543354213 Project import generated by Copybara.
GitOrigin-RevId: c21ba4f7bb4a3d621eb1d187e6b5e816bb85380c
2021-09-28 10:13:01 +02:00

19 lines
476 B
Nix

{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
knotifications, kwindowsystem, kxmlgui, qtx11extras
}:
mkDerivation {
pname = "kruler";
meta = {
homepage = "https://apps.kde.org/kruler/";
description = "Screen ruler";
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.vandenoever ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kwindowsystem knotifications kxmlgui qtx11extras
];
}