From 1a5e32d03bc6254932300e3b87ca826f2ef25a0a Mon Sep 17 00:00:00 2001 From: Eric Dvorsak Date: Wed, 12 Aug 2015 20:31:03 +0200 Subject: fixing java-certs package --- java-certs.scm | 15 ++++++++------- 1 file 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 -;;; Copyright © 2015 Mark H Weaver +;;; Copyright © 2015 Eric Dvorsak ;;; ;;; 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+))) -- cgit v1.2.3