summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer King <spencer.king@wustl.edu>2026-01-25 19:18:36 -0600
committerNguyễn Gia Phong <cnx@loang.net>2026-05-12 13:36:27 +0900
commit3d2b6612b39859b2852766500020e2138934022e (patch)
tree44355eed45fd3fad3d97a71e3431489e55a080cb
parentd6cca68094ec097bd9fcdeeaaa50b7afe4c93cb3 (diff)
gnu: Add julia-quantuminterface.
* gnu/packages/julia-xyz.scm (julia-quantuminterface): New variable. Change-Id: I40159a4f5a085e5a0637fa51b2f89cd4b6a299ab Merges: https://codeberg.org/guix/guix/pulls/5923 Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
-rw-r--r--gnu/packages/julia-xyz.scm24
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index e73f6e2924..3323c2b932 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 jgart <jgart@dismail.de>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
-;;; Copyright © 2024, 2025 Spencer King <spencer.king@geneoscopy.com>
+;;; Copyright © 2024-2026 Spencer King <spencer.king@wustl.edu>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5592,6 +5592,28 @@ arbitrary normed vector spaces (e.g. matrix-valued integrands).")
format.")
(license license:expat)))
+(define-public julia-quantuminterface
+ (package
+ (name "julia-quantuminterface")
+ (version "0.4.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/qojulia/QuantumInterface.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05792hkhjghlpm919ip8hzbhwv8xcngmyyks2nr8bln6qa8f8r9i"))))
+ (build-system julia-build-system)
+ (native-inputs (list julia-safetestsets))
+ (home-page "https://github.com/qojulia/QuantumInterface.jl")
+ (synopsis "Lightweight interface for Quantum Physics related packages")
+ (description
+ "This package provides a lightweight interface for Quantum Physics
+related packages.")
+ (license license:expat)))
+
(define-public julia-quaternions
(package
(name "julia-quaternions")