summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-07-27 18:50:43 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-07-27 18:53:09 +0900
commit9b79828d73ca91f2cbfc10a99287db0907a1cba2 (patch)
treed339bdd9c7c1876f3dd5641d3325e7d22d998395
parente20f52c6645bf07b030f2717500645971a0e344a (diff)
gnu: Remove ppp-2.4.9.
* gnu/packages/samba.scm (ppp-2.4.9): Delete variable. Change-Id: Ieb32184f533ac409bab38dcc12fa56ae8a6d8c6b
-rw-r--r--gnu/packages/samba.scm32
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index f8bce908f1..765a72af92 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -523,38 +523,6 @@ and IPV6 and the protocols layered above them, such as TCP and UDP.")
license:gpl2+
license:public-domain))))
-(define-public ppp-2.4.9
- (package
- (inherit ppp)
- (name "ppp")
- (version "2.4.9")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ppp-project/ppp")
- (commit (string-append "ppp-" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1bhhksdclsnkw54a517ndrw55q5zljjbh9pcqz1z4a2z2flxpsgk"))))
- (arguments
- (list #:tests? #f ;; No "check" target
- #:make-flags #~(list (string-append "CC=" #$(cc-for-target)))
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'configure 'patch-Makefile
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((openssl (assoc-ref inputs "openssl"))
- (libpcap (assoc-ref inputs "libpcap")))
- (substitute* "pppd/Makefile.linux"
- (("/usr/include/openssl")
- (string-append openssl "/include"))
- (("-DPPP_FILTER")
- (string-append "-DPPP_FILTER -I" libpcap "/include")))
- (substitute* "pppd/pppcrypt.h"
- (("des\\.h") "openssl/des.h")))
- #t)))))))
-
(define-public wsdd
(package
(name "wsdd")