diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-09 09:00:40 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-24 14:55:57 -0500 |
commit | d1dc2c47fef2102a479f797244e542af6eaf9865 (patch) | |
tree | 56782ec3310fca468bf1c760cb583a8f5bd0c7f5 /gnu/packages | |
parent | 9381e14536cf4370ab1f567839636f21c3eb9f12 (diff) | |
download | guix-d1dc2c47fef2102a479f797244e542af6eaf9865.tar.gz guix-d1dc2c47fef2102a479f797244e542af6eaf9865.zip |
gnu: Add clazy.
* gnu/packages/qt.scm (clazy): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/qt.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 3784d01eaf..009626d6d9 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -4563,6 +4563,31 @@ authentication on behalf of its clients.") "This plugin for the Accounts-SSO SignOn daemon handles the OAuth 1.0 and 2.0 authentication protocols.") (license license:lgpl2.1+))) + +(define-public clazy + (package + (name "clazy") + (version "1.11") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/KDE/clazy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1y0n1jknq566z1rifkgdm1yqb0mw564lp51jidfz7q9w91spijci")))) + (build-system cmake-build-system) + (native-inputs (list python)) + (inputs (list clang llvm)) + (home-page "https://github.com/KDE/clazy/") + (synopsis "Qt-oriented static code analyzer") + (description "clazy is a compiler plugin which allows @command{clang} to +understand Qt semantics. It can emit more than fifty (50) Qt-related compiler +warnings, ranging from unneeded memory allocations to misuses of the API, +including @i{fix-its} for automatic refactoring.") + (license license:lgpl2.0+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |