My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/kde/kruler.nix

19 lines
476 B

{
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
];
}