aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidnights.com>2025-07-20 11:47:55 -0400
committerChristopher R. Nelson <christopher.nelson@languidnights.com>2025-07-20 11:47:55 -0400
commit26c6a378a0f4733a4d5d77624eac5cdb192c9a5e (patch)
tree31cca05130a6425030e49d9ff23601c7547413ef
parent94ca9b2a4723aea1d04e908746eba9ef1c3bcb2a (diff)
cpplint updated in guix
-rw-r--r--crn/packages/cpp.scm23
1 files changed, 0 insertions, 23 deletions
diff --git a/crn/packages/cpp.scm b/crn/packages/cpp.scm
deleted file mode 100644
index 828b5e2..0000000
--- a/crn/packages/cpp.scm
+++ /dev/null
@@ -1,23 +0,0 @@
-(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"))))))