summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Dvorsak <eric@dvorsak.fr>2015-08-12 20:31:03 +0200
committerEric Dvorsak <eric@dvorsak.fr>2015-08-12 20:31:03 +0200
commit1a5e32d03bc6254932300e3b87ca826f2ef25a0a (patch)
treed71be24c327d62da0a8ddbed06d1cdce92f4d1a6
parentTrying with git (diff)
downloadguix-nonfree-1a5e32d03bc6254932300e3b87ca826f2ef25a0a.tar.gz
fixing java-certs package
-rw-r--r--java-certs.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/java-certs.scm b/java-certs.scm
index b29d7a0..1531e33 100644
--- a/java-certs.scm
+++ b/java-certs.scm
@@ -1,6 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
-;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -32,23 +31,25 @@
(source
(origin
(method url-fetch)
- (uri (string-append "https://github.com/yenda/guix-packages/raw/master/" "cacerts"))
+ (uri "file:///tmp/cacerts")
(sha256
(base32
"1ksxkbvhx1ga6yr5l7h6yxx5kqnvk1cxbyg8d7xd55anbaq8vi6x"))))
- (build-system trivial)
+ (build-system trivial-build-system)
(arguments
`(#:modules ((guix build utils))
#:builder
(begin
(use-modules (guix build utils))
- (let ((certsdir (string-append %output "/etc/ssl/certs/java")))
+ (let ((source (assoc-ref %build-inputs "source"))
+ (certsdir (string-append %output "/etc/ssl/certs/java")))
(mkdir-p certsdir)
(copy-file source (string-append certsdir "/cacerts"))))))
(native-inputs
`(("source" ,source)))
+ (home-page "")
(synopsis "Java CA certificates from Debian")
(description
"This package provides certificates for Certification Authorities (CA)
-taken from the NSS package and thus ultimately from the Mozilla project."))
- (license license:gpl2+))
+taken from the NSS package and thus ultimately from the Mozilla project.")
+ (license license:gpl2+)))