* [bug#61339] [PATCH] gnu: Add smartdns.
@ 2023-02-07 5:57 Hilton Chain via Guix-patches via
2023-02-11 21:15 ` bug#61339: " Nicolas Goaziou
0 siblings, 1 reply; 2+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-02-07 5:57 UTC (permalink / raw)
To: 61339
* gnu/packages/dns.scm (smartdns): New variable.
---
gnu/packages/dns.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 6eac4fa542..ef65dfa713 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2020 Simon South <simon@simonsouth.net>
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1389,3 +1390,38 @@ (define-public openresolv
configure the real @file{/etc/resolv.conf} and optionally any local
nameservers other than libc.")
(license license:bsd-2)))
+
+(define-public smartdns
+ (package
+ (name "smartdns")
+ (version "40")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pymumu/smartdns")
+ (commit (string-append "Release" version))))
+ (file-name (git-file-name name version))
+ (modules '((guix build utils)))
+ (snippet '(substitute* "Makefile"
+ ((".*SYSTEMDSYSTEMUNITDIR.*") "")))
+ (sha256
+ (base32
+ "0ibbj96s40xgk6q7dsgpx65rjkknl1pn7nca5fcbbhcm2m80nzjj"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:tests? #f ;no tests
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "DESTDIR=" #$output)
+ "PREFIX=''")
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (inputs (list openssl))
+ (home-page "https://github.com/pymumu/smartdns")
+ (synopsis "Local DNS server")
+ (description
+ "This package provides @code{SmartDNS}, a DNS server which accepts DNS
+query requests from local clients, obtains DNS query results from multiple
+upstream DNS servers, and returns the fastest access results to clients.")
+ (license license:gpl3+)))
base-commit: 1f684d00d25f0f205c4cc4b762d8f56911062581
--
2.39.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#61339: [PATCH] gnu: Add smartdns.
2023-02-07 5:57 [bug#61339] [PATCH] gnu: Add smartdns Hilton Chain via Guix-patches via
@ 2023-02-11 21:15 ` Nicolas Goaziou
0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2023-02-11 21:15 UTC (permalink / raw)
To: Hilton Chain via Guix-patches via; +Cc: Hilton Chain, 61339-done
Hello,
Hilton Chain via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/dns.scm (smartdns): New variable.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-11 21:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-07 5:57 [bug#61339] [PATCH] gnu: Add smartdns Hilton Chain via Guix-patches via
2023-02-11 21:15 ` bug#61339: " Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).