guix_mirror_bot pushed a commit to branch master
in repository guix.
commit a26bde109b63bbaa90a75d6a15895d1c50cd5994
Author: Andreas Enge <[email protected]>
AuthorDate: Sat Aug 30 11:55:16 2025 +0200
gnu: Remove fdik-libetpan.
* gnu/packages/pep.scm (fdik-libetpan): Delete variable.
Change-Id: I8d3e876ea9b961a7fc809074b8174cf49484f8f4
---
gnu/packages/pep.scm | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/gnu/packages/pep.scm b/gnu/packages/pep.scm
index 7c439e0ff4..e1c4058ac8 100644
--- a/gnu/packages/pep.scm
+++ b/gnu/packages/pep.scm
@@ -71,23 +71,3 @@ that usually is the terminal. Your shell provides options
to redirect the
output into a pipe or a file.")
(license license:gpl2)))
-(define fdik-libetpan
- ;; pEp Engine requires libetpan with a set of patches that have not been
- ;; upstreamed yet.
- (let ((commit "0b80c39dd1504462ba3a39dc53db7c960c3a63f3") ; 2020-11-27
- (checksum "0gv3ivaziadybjlf6rfpv1j5z5418243v5cvl4swlxd2njsh7gjk")
- (revision "6"))
- (package
- (inherit libetpan)
- (name "fdik-libetpan")
- (version (string-append "1.6-" revision "." (string-take commit 8)))
- (source
- (origin
- (inherit (package-source libetpan))
- (method git-fetch)
- (uri (git-reference
- (url "https://gitea.pep.foundation/pEp.foundation/libetpan")
- (commit commit)))
- (file-name (string-append name "-" version))
- (sha256 (base32 checksum)))))))
-