From d8641c1120d0c70f66e4a772526564615e04481b Mon Sep 17 00:00:00 2001 From: pjotrp Date: Tue, 12 Sep 2017 04:04:55 +0000 Subject: Builds yaj --- gn/packages/yaj.scm | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) (limited to 'gn/packages/yaj.scm') diff --git a/gn/packages/yaj.scm b/gn/packages/yaj.scm index 90959c7..b38adc3 100644 --- a/gn/packages/yaj.scm +++ b/gn/packages/yaj.scm @@ -65,26 +65,23 @@ (build-system trivial-build-system) (native-inputs `(("unzip" ,unzip) ("source" ,source))) - (inputs `(("python" ,python))) - ; ("python2-flask" ,python2-flask) - ; ("python2-jinja2" ,python2-jinja2) - ; ("python2-mak" ,python2-mak) - ; )) - - ; (arguments - ; `(#:modules ((guix build utils)) - ; #:python ,python-2 - ; #:builder #f)) + (inputs `(("python" ,python) + ("python2-flask" ,python2-flask) + ("python2-jinja2" ,python2-jinja2) + ; ("python2-mak" ,python2-mak) + )) (arguments `(#:modules ((guix build utils)) - #:builder (begin - (use-modules (guix build utils)) - (let ((source (assoc-ref %build-inputs "source")) - (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip")) - ) - (and (mkdir "db") - (zero? (system* unzip source "-d" "db")) - (chdir "db")))))) + #:builder + (begin + (use-modules (guix build utils)) + (let ((target (string-append (assoc-ref %outputs "out") + "/share"))) + (write target) + (mkdir-p target) + ; (copy-recursively (assoc-ref %build-inputs "source") target) + #t)))) + (home-page "http://github.com/pjotrp/yaj/") (synopsis "Yet another journal") (description "YAJ.") -- cgit v1.2.3