diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-12-31 23:45:41 -0500 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-12-31 23:59:21 -0500 |
commit | 6129b63949c0c3202704d0f00e25a0fc723dfd97 (patch) | |
tree | 4dfac279fb645926c4b6a86e2f27a40af431a9a4 /crn/packages/cpp.scm | |
parent | e013d2ba62d006585b69a308c2434eb0189b667b (diff) |
make cpplint working?
Diffstat (limited to 'crn/packages/cpp.scm')
-rw-r--r-- | crn/packages/cpp.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/crn/packages/cpp.scm b/crn/packages/cpp.scm new file mode 100644 index 0000000..4120342 --- /dev/null +++ b/crn/packages/cpp.scm @@ -0,0 +1,25 @@ +(define-module (crn packages cpp) + :use-module (crn packages) + :use-module (gnu packages) + :use-module (gnu packages cpp) + :use-module (guix packages) + :use-module (guix git-download)) + +(define-public cpplint-up + (package (inherit cpplint) + (name "cpplint-up") + (version "1.5.5") + (source + (origin + (method git-fetch) + ;; Fetch from github instead of pypi, since the test cases are not in + ;; the pypi archive. + (uri (git-reference + (url "https://github.com/cpplint/cpplint") + (commit version))) + (sha256 + (base32 "13l86aq0h1jga949k79k9x3hw2xqchjc162sclg2f99vz98zcz15")) + (file-name (git-file-name name version)) + (patches (crn/search-patches "cpplint-pytest-version.patch")))))) + +cpplint-up |