gnu: ntp: Fix indentation.
* gnu/packages/ntp.scm (ntp): Fix indentation to only use spaces.
This commit is contained in:
parent
f0ddc5e55b
commit
d35de59b64
|
@ -40,32 +40,33 @@
|
||||||
(package
|
(package
|
||||||
(name "ntp")
|
(name "ntp")
|
||||||
(version "4.2.8p8")
|
(version "4.2.8p8")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (list (string-append
|
(method url-fetch)
|
||||||
"http://archive.ntp.org/ntp4/ntp-"
|
(uri (list (string-append
|
||||||
(version-major+minor version)
|
"http://archive.ntp.org/ntp4/ntp-"
|
||||||
"/ntp-" version ".tar.gz")
|
(version-major+minor version)
|
||||||
(string-append
|
"/ntp-" version ".tar.gz")
|
||||||
"https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-"
|
(string-append
|
||||||
(version-major+minor version)
|
"https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-"
|
||||||
"/ntp-" version ".tar.gz")))
|
(version-major+minor version)
|
||||||
(sha256
|
"/ntp-" version ".tar.gz")))
|
||||||
(base32
|
(sha256
|
||||||
"1vlpgd0dk2wkpmmf869sfxi8f46sfnmjgk51vl8n6vj5y2sx1cra"))
|
(base32
|
||||||
(modules '((guix build utils)))
|
"1vlpgd0dk2wkpmmf869sfxi8f46sfnmjgk51vl8n6vj5y2sx1cra"))
|
||||||
(snippet
|
(modules '((guix build utils)))
|
||||||
'(begin
|
(snippet
|
||||||
;; Remove the bundled copy of libevent, but we must keep
|
'(begin
|
||||||
;; sntp/libevent/build-aux since configure.ac contains
|
;; Remove the bundled copy of libevent, but we must keep
|
||||||
;; AC_CONFIG_AUX_DIR([sntp/libevent/build-aux])
|
;; sntp/libevent/build-aux since configure.ac contains
|
||||||
(rename-file "sntp/libevent/build-aux"
|
;; AC_CONFIG_AUX_DIR([sntp/libevent/build-aux])
|
||||||
"sntp/libevent:build-aux")
|
(rename-file "sntp/libevent/build-aux"
|
||||||
(delete-file-recursively "sntp/libevent")
|
"sntp/libevent:build-aux")
|
||||||
(mkdir "sntp/libevent")
|
(delete-file-recursively "sntp/libevent")
|
||||||
(rename-file "sntp/libevent:build-aux"
|
(mkdir "sntp/libevent")
|
||||||
"sntp/libevent/build-aux")
|
(rename-file "sntp/libevent:build-aux"
|
||||||
#t))))
|
"sntp/libevent/build-aux")
|
||||||
|
#t))))
|
||||||
(native-inputs `(("which" ,which)
|
(native-inputs `(("which" ,which)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue