guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add openntpd.


From: Taylan Ulrich B.
Subject: 01/01: gnu: Add openntpd.
Date: Tue, 10 Feb 2015 13:02:57 +0000

taylanub pushed a commit to branch master
in repository guix.

commit 4ee696247b320144c16656fd525b20a3a4cf31d3
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
Date:   Mon Feb 9 21:39:41 2015 +0100

    gnu: Add openntpd.
    
    * gnu/packages/ntp.scm (openntpd): New variable.
---
 gnu/packages/ntp.scm |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm
index 24ce2f5..0525882 100644
--- a/gnu/packages/ntp.scm
+++ b/gnu/packages/ntp.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 John Darrington <address@hidden>
 ;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
+;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -61,3 +62,26 @@ computers over a network.")
              "http://www.eecis.udel.edu/~mills/ntp/html/copyright.html";
              "A non-copyleft free licence from the University of Delaware"))
    (home-page "http://www.ntp.org";)))
+
+(define-public openntpd
+  (package
+    (name "openntpd")
+    (version "5.7p3")
+    (source (origin
+              (method url-fetch)
+              ;; XXX Use mirror://openbsd
+              (uri (string-append
+                    "http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/openntpd-";
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0filjmb3b8rc39bvhm8q2azzj10ljfgq41qih71pxv919j57qhag"))))
+    (build-system gnu-build-system)
+    (home-page "http://www.openntpd.org/";)
+    (synopsis "NTP client and server by the OpenBSD Project")
+    (description "OpenNTPD is the OpenBSD Project's implementation of a client
+and server for the Network Time Protocol.  Its design goals include being
+secure, easy to configure, and accurate enough for most purposes, so it's more
+minimalist than ntpd.")
+    ;; A few of the source files are under bsd-3.
+    (license (list l:isc l:bsd-3))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]