diff options
author | pjotrp | 2024-04-01 14:32:10 +0200 |
---|---|---|
committer | pjotrp | 2024-04-01 14:40:19 +0200 |
commit | e200b1c3ea52776bbc701f9912d0fcbc86b79a2e (patch) | |
tree | c0a09d0835ddcc0733f73a2d2fe91c5b7e5a59bf /gn | |
parent | 4a8d467bcf0024960f3b88842be32a64f610c022 (diff) | |
download | guix-bioinformatics-e200b1c3ea52776bbc701f9912d0fcbc86b79a2e.tar.gz |
gn: Add genenetwork3-production variant
* gn/packages/genenetwork.scm (genenetwork3-stable): New variable.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index e439fdd..d89852d 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -346,6 +346,18 @@ (description "Genenetwork installation sumo.") (license license:agpl3+)))) +(define-public genenetwork3-stable + (let ((commit "25d3f3d7a13a9d94b561b1d824ba0b428a3fc006") + (revision "1")) + (package + (inherit genenetwork3) + (name "genenetwork3-stable") + (version (string-append "stable-" (git-version "3.11" revision commit))) + (source + (git-checkout + (url "https://github.com/genenetwork/genenetwork3") + (branch "prod")))))) + (define-public genenetwork2-stable (let ((commit "42b37bba21530aab104bd2fbbddb27ce7cd7de7c") (revision "1")) |