mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: nss-certs: Include 'install-locale' phase.
* gnu/packages/certs.scm (nss-certs)[arguments]: Include 'install-locale' phase. Remove outdated comment. (certdata2pem)[source]: Add 'file-name' to origin.
This commit is contained in:
parent
af0927ac68
commit
81f36365f1
1 changed files with 3 additions and 6 deletions
|
@ -37,6 +37,7 @@ (define certdata2pem
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
"http://pkgs.fedoraproject.org/cgit/ca-certificates.git/plain/certdata2pem.py?id=053dde8a2f5901e97028a58bf54e7d0ef8095a54")
|
"http://pkgs.fedoraproject.org/cgit/ca-certificates.git/plain/certdata2pem.py?id=053dde8a2f5901e97028a58bf54e7d0ef8095a54")
|
||||||
|
(file-name "certdata2pem.py")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0zscrm41gnsf14zvlkxhy00h3dmgidyz645ldpda3y3vabnwv8dx"))))
|
"0zscrm41gnsf14zvlkxhy00h3dmgidyz645ldpda3y3vabnwv8dx"))))
|
||||||
|
@ -107,10 +108,6 @@ (define (maybe-install-cert file)
|
||||||
(system* "certdata2pem.py" "certdata.txt")
|
(system* "certdata2pem.py" "certdata.txt")
|
||||||
;; copy selected .pem files into the output
|
;; copy selected .pem files into the output
|
||||||
(for-each maybe-install-cert
|
(for-each maybe-install-cert
|
||||||
;; FIXME: Some of the file names are UTF8 (?) and
|
|
||||||
;; cause an error message such as find-files:
|
|
||||||
;; ./EBG_Elektronik_Sertifika_Hizmet_Sa??lay??c??s??:2.8.76.175.115.66.28.142.116.2.pem:
|
|
||||||
;; No such file or directory
|
|
||||||
(find-files "." ".*\\.pem")))
|
(find-files "." ".*\\.pem")))
|
||||||
|
|
||||||
(with-directory-excursion certsdir
|
(with-directory-excursion certsdir
|
||||||
|
@ -123,7 +120,7 @@ (define (maybe-install-cert file)
|
||||||
(system* "c_rehash" "."))))
|
(system* "c_rehash" "."))))
|
||||||
|
|
||||||
(map (cut assq <> %standard-phases)
|
(map (cut assq <> %standard-phases)
|
||||||
'(set-paths unpack)))))
|
'(set-paths install-locale unpack)))))
|
||||||
(synopsis "CA certificates from Mozilla")
|
(synopsis "CA certificates from Mozilla")
|
||||||
(description
|
(description
|
||||||
"This package provides certificates for Certification Authorities (CA)
|
"This package provides certificates for Certification Authorities (CA)
|
||||||
|
|
Loading…
Reference in a new issue