From aff304bd4036dc5987b614561985c0252f7a8bcb Mon Sep 17 00:00:00 2001 From: Tissevert Date: Sat, 12 Nov 2022 09:31:37 +0100 Subject: [PATCH] Improve guix declaration --- guix.scm | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/guix.scm b/guix.scm index b94fa80..b572a83 100644 --- a/guix.scm +++ b/guix.scm @@ -4,24 +4,21 @@ (guix licenses) (guix packages)) -(let - ((%source-dir (dirname (current-filename)))) +(let ((%source-dir (dirname (current-filename)))) (package (name "sjw-unitJS") (version "devel") - (source - (local-file %source-dir - #:recursive? #t - #:select? (git-predicate %source-dir))) + (source (local-file %source-dir + #:recursive? #t + #:select? (git-predicate %source-dir))) (build-system copy-build-system) (arguments - '(#:install-plan - '(("src" "lib/SJW/unitJS")))) - (home-page "https://git.marvid.fr/Tissevert/SJW") + '(#:install-plan '(("src" "lib/SJW/unitJS")))) + (home-page "https://git.marvid.fr/Tissevert/UnitJS") (synopsis "The Simple Javascript Wrench.") (description - "A collection of JS modules to write simple web applications. It covers - the basics, providing asynchronous operations without any need for - promises-support from the browser as well as primitives to create DOM - elements and basic functional-programming tooling.") + "A collection of JS modules to write simple web applications. It covers + the basics, providing asynchronous operations without any need for + promises-support from the browser as well as primitives to create DOM + elements and basic functional-programming tooling.") (license gpl3+)))