diff options
author | Christopher Rodriguez <yewscion@gmail.com> | 2022-08-10 13:27:59 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-09-01 00:57:10 +0200 |
commit | 4e7c1130f79649af0e905a22d35de5473b451633 (patch) | |
tree | 052c46813dc62e0584e1a252827b4bbd2ce7c442 | |
parent | ee5a85166cd4bb2099985592e3c207959013a1e8 (diff) | |
download | guix-4e7c1130f79649af0e905a22d35de5473b451633.tar.gz |
gnu: Add singeli-sources.
* gnu/packages/bqn.scm: Add singeli-sources origin definition. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/bqn.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm index 34bc889b74..1462f2d964 100644 --- a/gnu/packages/bqn.scm +++ b/gnu/packages/bqn.scm @@ -164,3 +164,14 @@ the same author.") by APL.") (home-page "https://mlochbaum.github.io/BQN/") (license license:gpl3)))) + +(define singeli-sources + (let ((commit "fd17b144483549dbd2bcf23e3a37a09219171a99")) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mlochbaum/Singeli") + (commit commit))) + (file-name (git-file-name "singeli-sources" commit)) + (sha256 + (base32 "1rr4l7ijzcg25n2igi1mzya6qllh5wsrf3m5i429rlgwv1fwvfji"))))) |