diff options
author | pjotrp | 2017-07-16 17:06:45 +0200 |
---|---|---|
committer | pjotrp | 2017-07-16 17:06:45 +0200 |
commit | 3315af153d1abe42bb5592d59b7f56bd53a2ee28 (patch) | |
tree | e0ec89724d6f4906f593308343c41339b5e31cb2 | |
parent | cc6787454df46e1a1bdc2c20a6a983113188e36d (diff) | |
download | guix-bioinformatics-3315af153d1abe42bb5592d59b7f56bd53a2ee28.tar.gz |
Added package for logtodo
-rw-r--r-- | gn/packages/gemma.scm | 1 | ||||
-rw-r--r-- | gn/packages/perl.scm | 33 |
2 files changed, 33 insertions, 1 deletions
diff --git a/gn/packages/gemma.scm b/gn/packages/gemma.scm index 23235d3..b11bcfe 100644 --- a/gn/packages/gemma.scm +++ b/gn/packages/gemma.scm @@ -55,7 +55,6 @@ #:use-module (gnu packages vim) #:use-module (gnu packages web) #:use-module (gnu packages xml) - ; #:use-module (gnu packages zip) #:use-module (gnu packages bootstrap) #:use-module (gn packages ldc) #:use-module (gn packages ldc) diff --git a/gn/packages/perl.scm b/gn/packages/perl.scm index c1b7946..bff7208 100644 --- a/gn/packages/perl.scm +++ b/gn/packages/perl.scm @@ -60,3 +60,36 @@ (synopsis "Parse and format time values") (description "ParseDate") (license #f))) + +(define-public logtodo + (let ((commit "acda8f2a7aa67f590ae03487306794b039eaba68")) + (package + (name "logtodo") + (version (string-append "1.0.5-" (string-take commit 7) )) + (source (origin + (method git-fetch) + (uri (git-reference + ;; (url "https://github.com/genenetwork/genenetwork2.git") + (url "https://gitlab.com/pjotrp/logtodo.git") + (commit commit))) + (file-name (string-append name "-" (string-take commit 7))) + (sha256 + (base32 + "0bcjnb09sxgv7c45nk4sipxw38a6ldhmijgn614h7bibwqyvybmc")))) + (build-system perl-build-system) + (propagated-inputs `(("perl-time-parsedate" ,perl-time-parsedate))) + (arguments + `( + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "logtodo" (string-append out "/bin")))))) + #:tests? #f)) ; no 'setup.py test' really! + (home-page "https://gitlab.com/pjotrp/logtodo") + (synopsis "Pjotr's time logger") + (description "None") + (license license:gpl2+)))) |