guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/33: gnu: Add julia-filepathsbase.


From: guix-commits
Subject: 04/33: gnu: Add julia-filepathsbase.
Date: Mon, 14 Jun 2021 07:46:18 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 08ad8d69ed47aa4bb81764f8b4ba89f8e7eea9e0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 10:39:50 2021 +0300

    gnu: Add julia-filepathsbase.
    
    * gnu/packages/julia-xyz.scm (julia-filepathsbase): New variable.
---
 gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index bd24f81..44b9533 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -974,6 +974,28 @@ need the ffmpeg binaries + executables, and don't want the 
overhead of
 @code{VideoIO.jl}.")
     (license license:expat)))
 
+(define-public julia-filepathsbase
+  (package
+    (name "julia-filepathsbase")
+    (version "0.9.10")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/rofinn/FilePathsBase.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "136wm4ik6isrdanmpi4gdr1qw0qhr15i925qzjxbawk5hnyzwng9"))))
+    (build-system julia-build-system)
+    (arguments
+     `(#:tests? #f))    ; Cycle with JLSO.jl
+    (home-page "https://github.com/rofinn/FilePathsBase.jl";)
+    (synopsis "Filesystem path types in Julia")
+    (description "@code{FilePathsBase.jl} provides a type based approach to
+working with filesystem paths in Julia.")
+    (license license:expat)))
+
 (define-public julia-fillarrays
   (package
     (name "julia-fillarrays")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]