about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/web.scm56
1 files changed, 26 insertions, 30 deletions
diff --git a/gn/packages/web.scm b/gn/packages/web.scm
index 785b0fc..da4de1f 100644
--- a/gn/packages/web.scm
+++ b/gn/packages/web.scm
@@ -82,38 +82,34 @@ extensive prebuilt components, and powerful plugins built on jQuery.")
 
 (define-public web-bootstrap-native
   (let ((commit "2e48d7ee29d4063e3bd2024ff83ddc50a550c4dd"))
-  (package
-    (name "web-bootstrap-native")
-    (version (string-append "4.0.0" "-beta-" (string-take commit 7)))
-    (source (origin
-             (method git-fetch)
-             (uri (git-reference
-                   (url "https://github.com/thednp/bootstrap.native.git")
-                   (commit commit)))
-             (file-name (string-append name "-" commit))
-             (sha256
-              (base32
-               "1hkyibyfby0mnkavr3xbmr20kb88wy6jw28b206pd236xnp2qkx0"))))
-    (build-system trivial-build-system)
-    (native-inputs `(("source" ,source)))
-    (arguments
-     `(#:modules ((guix build utils))
-       #:builder
-       (let* ((out (assoc-ref %outputs "out"))
-              (name "bootstrap-native")
-              (targetdir (string-append out "/share/web/" name))
-              )
+    (package
+      (name "web-bootstrap-native")
+      (version (string-append "4.0.0" "-beta-" (string-take commit 7))) ; Sept, 8, 2017
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/thednp/bootstrap.native.git")
+                       (commit commit)))
+                (file-name (string-append name "-" commit))
+                (sha256
+                 (base32
+                  "1hkyibyfby0mnkavr3xbmr20kb88wy6jw28b206pd236xnp2qkx0"))))
+      (build-system trivial-build-system)
+      (arguments
+       `(#:modules ((guix build utils))
+         #:builder
+         (let* ((out (assoc-ref %outputs "out"))
+                (name "bootstrap-native")
+                (targetdir (string-append out "/share/web/" name))
+                (source (assoc-ref %build-inputs "source")))
            (begin
              (use-modules (guix build utils))
-             (let ((source (assoc-ref %build-inputs "source")))
-               (and
-                    ; (mkdir-p targetdir)
-                    (copy-recursively source targetdir)
-                    ))))))
-    (home-page "https://github.com/thednp/bootstrap.native")
-    (synopsis "Bootstrap minimal")
-    (description "Bootstrap native does not use jquery.")
-    (license license:expat))))
+             (copy-recursively source targetdir)))))
+      (native-inputs `(("source" ,source)))
+      (home-page "https://github.com/thednp/bootstrap.native")
+      (synopsis "Bootstrap minimal")
+      (description "Bootstrap native does not use jquery.")
+      (license license:expat))))
 
 (define-public mod-python
   (let ((commit "902bb8700e2c45ffd96b78e2f1146a3c101be7f5")