diff options
author | pjotrp | 2016-03-18 21:16:42 -0500 |
---|---|---|
committer | pjotrp | 2016-03-18 21:16:42 -0500 |
commit | 364d11268ecea6bf31a48a7942b4c599dc386212 (patch) | |
tree | e880fafdea9c4e0f138dc1dea5e0cab532b4265a /gn/packages/genenetwork.scm | |
parent | 520fb0f8ef40589738123f0129ccc34e1c756c9e (diff) | |
parent | da665e5a94c59ff4cab6c7f3b88c102a3d15c968 (diff) | |
download | guix-bioinformatics-364d11268ecea6bf31a48a7942b4c599dc386212.tar.gz |
Mereg
Diffstat (limited to 'gn/packages/genenetwork.scm')
-rw-r--r-- | gn/packages/genenetwork.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 033bf94..aec305b 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -141,20 +141,20 @@ (license license:agpl3+)))) (define-public genenetwork2 - (let ((commit "9e9475053")) + (let ((commit "8c9de7e5a2016f1e5b7397be1a8e84396e3a25c5")) (package (name "genenetwork2") - (version (string-append "2.0-" commit )) + (version (string-append "2.0-" (string-take commit 7) )) (source (origin (method git-fetch) (uri (git-reference ;; (url "https://github.com/genenetwork/genenetwork2.git") (url "https://github.com/pjotrp/genenetwork2.git") (commit commit))) - (file-name (string-append name "-" commit)) + (file-name (string-append name "-" (string-take commit 7))) (sha256 (base32 - "09hvy9mf4dnmkb8qg49viffzrxk53m2kr4r955m84dxaa5pdrjhd")))) + "1kgigzs4rs6zgbqbnm40rcljzz9prlwv7n2n9an57jk58bjgf6v8")))) (propagated-inputs `( ;; propagated for development purposes ("python" ,python-2) ;; probably superfluous ("r" ,r) |