aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/inbox-size.scm
blob: fb9fb7fad05f969989049f43970a26000ff0f9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(define-module (oni packages inbox-size)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (oni packages scsh))

(define-public (inbox-size emacs)
  (let ((commit "e9a94db05e45be9357ccc757601c1cd890a6254c")
        (revision "0"))
    (package
      (name "inbox-size")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (uri (git-reference
               (url "git://code.ryuslash.org/util/tom/inbox-size.git")
               (commit commit)))
         (method git-fetch)
         (sha256
          (base32 "09mjxk85cqvcxk5n51izfqap36pjd35z476fmvd5vq7d5kgnczzw"))
         (file-name (git-file-name name version))))
      (propagated-inputs
       (list bash scsh emacs))
      (build-system gnu-build-system)
      (arguments
       `(#:tests? #f
         #:phases
         (modify-phases %standard-phases
           (delete 'configure)
           (delete 'build)
           (replace 'install
             (lambda* (#:key outputs #:allow-other-keys)
               (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
                 (install-file "inbox-size" bin)))))))
      (home-page "https://ryuslash.org/")
      (synopsis "A simple script that checks the size of my GTD inbox.")
      (description "Counts the number of items in my GTD inbox.")
      (license license:gpl3+))))