aboutsummaryrefslogtreecommitdiff
path: root/crn/packages/cpp.scm
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-20 22:23:47 -0500
committerChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-20 22:23:47 -0500
commitea411537de33d51ec3b610437e946e42e740115a (patch)
treefbb0a4a38ebee9dac86906034f38e2f80af5058a /crn/packages/cpp.scm
parent5d1ab52ca380906da9056d7a4784f7d7b1826fca (diff)
security: add public key to keyringkeyring
Diffstat (limited to 'crn/packages/cpp.scm')
-rw-r--r--crn/packages/cpp.scm25
1 files changed, 0 insertions, 25 deletions
diff --git a/crn/packages/cpp.scm b/crn/packages/cpp.scm
deleted file mode 100644
index 4120342..0000000
--- a/crn/packages/cpp.scm
+++ /dev/null
@@ -1,25 +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"))))))
-
-cpplint-up