[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add openntpd.
From: |
Ludovic Courtès |
Subject: |
Re: [PATCH] gnu: Add openntpd. |
Date: |
Tue, 10 Feb 2015 10:25:38 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
address@hidden (Taylan Ulrich "Bayırlı/Kammer") skribis:
> From d9e0a4d07ee7e82582589b1e1cd3be218dd6b08f Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <address@hidden>
> Date: Mon, 9 Feb 2015 21:39:41 +0100
> Subject: [PATCH] gnu: Add openntpd.
>
> * gnu/packages/ntp.scm (openntpd): New variable.
[...]
> +(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.")
Could you write a bit about what sets it apart? Notably that it’s
minimalist compared to ntpd.
> + (license l:isc)))
The web site says it’s “under a BSD license”. Could you double-check
which license that is?
TIA,
Ludo’.