Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kmag: init at 19.12.3 #89543

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Expand Up @@ -121,6 +121,7 @@ let
kio-extras = callPackage ./kio-extras.nix {};
kldap = callPackage ./kldap.nix {};
kleopatra = callPackage ./kleopatra.nix {};
kmag = callPackage ./kmag.nix {};
kmahjongg = callPackage ./kmahjongg.nix {};
kmail = callPackage ./kmail.nix {};
kmail-account-wizard = callPackage ./kmail-account-wizard.nix {};
Expand Down
17 changes: 17 additions & 0 deletions pkgs/applications/kde/kmag.nix
@@ -0,0 +1,17 @@
{
lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kconfig, kio, ktextwidgets, kxmlgui
}:

mkDerivation {
name = "kmag";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kdoctools kxmlgui kio ];
meta = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about description = "A screen magnifier for KDE";

license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add yourself to maintainers.

};
}