summaryrefslogtreecommitdiff
path: root/elenq/tools.scm
blob: 17b2a40bcd949052653c0fa2502695b39300b4c4 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(define-module (elenq tools)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system guile)
  #:use-module ((guix build utils) #:select (with-directory-excursion))
  #:use-module (gnu packages)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages guile-xyz))

(define-public guile-simple-site-builder
  (package
    (name "guile-simple-site-builder")
    (version "0.0.1")
    (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "git://git.elenq.tech/guile-simple-site-builder")
                       (commit version)))
                (sha256
                  (base32 "1gfbckg34ws2nf6ng85ip82ixvdscz1dfw1wd0yn43gd336n268v"))))
    (arguments
      `(#:phases
        (modify-phases %standard-phases
          (add-before 'build 'remove-guix.scm
                      (lambda _ (delete-file "guix.scm"))))))
    (propagated-inputs (list guile-3.0))
    (build-system guile-build-system)
    (home-page "https://git.elenq.tech/guile-simple-site-builder/")
    (synopsis "Atom and an HTML index generator")
    (description "A simple tool to generate an Atom and an HTML index from a
very simple scheme file.")
    (license license:gpl3+)))

(define-public reminder
  (let ((revision "1")
        (commit "cd2cbbb6511f6be57de2dcdcca20c76ca73e8f06"))
    (package
      (name "reminder")
      (version "0.0.1")
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://github.com/ekaitz-zarraga/reminder.git")
                       (commit commit)))
                (sha256
                  (base32 "0giykd6x040xd2d75sra6ziyhfic8dgr3fpyzv5v4bwzv6wafh35"))))
      (arguments
        `(#:phases (modify-phases %standard-phases
                      (add-before 'build 'delete-guix.scm
                        (lambda _ (delete-file "guix.scm"))))))
      (build-system guile-build-system)
      (native-inputs (list guile-3.0))
      (propagated-inputs (list guile-libnotify))
      (synopsis "Remind you things periodically")
      (description "Reminder triggers desktop notifications periodically according
to a configuration file you provided.")
      (home-page "none")
      (license license:asl2.0))))