[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/15: gnu: multichoose: Clean up.
From: |
guix-commits |
Subject: |
07/15: gnu: multichoose: Clean up. |
Date: |
Fri, 12 May 2023 17:25:44 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 001d9b1c64dd7274044f4168272146883f34201b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri May 12 22:33:44 2023 +0200
gnu: multichoose: Clean up.
* gnu/packages/bioinformatics.scm (multichoos): Fix indentation.
[arguments]: Use G-expression.
---
gnu/packages/bioinformatics.scm | 44 ++++++++++++++++++++---------------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4962c51ab9..6d34c0abab 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17369,30 +17369,30 @@ significance profiles for each word studied across
the sorted genelist.")
(name "multichoose")
(version "1.0.3")
(source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ekg/multichoose/";)
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0ci5fqvmpamwgxvmyd79ygj6n3bnbl3vc7b6h1sxz58186sm3pfs"))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ekg/multichoose/";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0ci5fqvmpamwgxvmyd79ygj6n3bnbl3vc7b6h1sxz58186sm3pfs"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; Tests require node.
- #:phases
- (modify-phases %standard-phases
- (delete 'configure) ; There is no configure phase.
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (bin (string-append out "/bin"))
- (include (string-append out "/include")))
- ;; TODO: There are Python modules for these programs too.
- (install-file "multichoose" bin)
- (install-file "multipermute" bin)
- (install-file "multichoose.h" include)
- (install-file "multipermute.h" include))
- #t)))))
+ (list
+ #:tests? #f ;Tests require node.
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure) ;There is no configure phase.
+ (replace 'install
+ (lambda _
+ (let ((bin (string-append #$output "/bin"))
+ (include (string-append #$output "/include")))
+ ;; TODO: There are Python modules for these programs too.
+ (install-file "multichoose" bin)
+ (install-file "multipermute" bin)
+ (install-file "multichoose.h" include)
+ (install-file "multipermute.h" include)))))))
(home-page "https://github.com/ekg/multichoose";)
(synopsis "Efficient loopless multiset combination generation algorithm")
(description "This library implements an efficient loopless multiset
- branch master updated (0e20ed322d -> d67a3622ef), guix-commits, 2023/05/12
- 01/15: gnu: ribotaper: Simplify with G-expression., guix-commits, 2023/05/12
- 03/15: gnu: methyldackel: Simplify arguments., guix-commits, 2023/05/12
- 02/15: gnu: phast: Simplify by using G-expression., guix-commits, 2023/05/12
- 06/15: gnu: samblaster: Update to 0.1.26., guix-commits, 2023/05/12
- 04/15: gnu: methyldackel: Update to 0.6.1., guix-commits, 2023/05/12
- 07/15: gnu: multichoose: Clean up.,
guix-commits <=
- 08/15: gnu: arriba: Use SEARCH-INPUT-FILE and -DIRECTORY., guix-commits, 2023/05/12
- 11/15: gnu: python-seaborn: Simplify by using pyproject-build-system., guix-commits, 2023/05/12
- 12/15: gnu: python-pyproject-metadata: Simplify by using pyproject-build-system., guix-commits, 2023/05/12
- 14/15: gnu: python-orjson: Reuse phases from pyproject-build-system., guix-commits, 2023/05/12
- 09/15: gnu: jamm: Use G-expression., guix-commits, 2023/05/12
- 10/15: gnu: shrinkwrap: Use pyproject-build-system., guix-commits, 2023/05/12
- 15/15: gnu: python-orjson: Fix version string of Python module., guix-commits, 2023/05/12
- 05/15: gnu: samblaster: Simplify., guix-commits, 2023/05/12
- 13/15: gnu: python-canonicaljson: Use pyproject-build-system., guix-commits, 2023/05/12