diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-26 09:34:24 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-26 10:51:52 +0300 |
commit | 2bf96f2d9e1f1415acf96c9a4620e2314af955bb (patch) | |
tree | 871415e2998451dfc3d3ba96a3df1e25c3d38af7 /gnu/packages/check.scm | |
parent | 8720e22fd071e1717023a7895b721ccd160c06a6 (diff) | |
download | guix-2bf96f2d9e1f1415acf96c9a4620e2314af955bb.tar.gz |
gnu: cppcheck: Update to 2.10.3.
* gnu/packages/check.scm (cppcheck): Update to 2.10.3. [home-page]: Update to new home-page.
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index db766f03ee..e671972654 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -737,7 +737,7 @@ format.") (define-public cppcheck (package (name "cppcheck") - (version "2.10") + (version "2.10.3") (source (origin (method git-fetch) (uri (git-reference @@ -745,12 +745,12 @@ format.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0riq7jlv21v2p77r01i36ll3klbgnkpsfk1wx4q8p1v5h5zgkkaa")) + (base32 "1xfxcg00rxjrb9m2k78yd3jjlldkciv67fsbmjb6n3l43hgfxb9k")) (patches (search-patches "cppcheck-disable-char-signedness-test.patch")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DBUILD_TESTS=ON"))) - (home-page "http://cppcheck.sourceforge.net") + (home-page "https://cppcheck.sourceforge.io") (synopsis "Static C/C++ code analyzer") (description "Cppcheck is a static code analyzer for C and C++. Unlike C/C++ compilers and many other analysis tools it does not detect syntax errors |