~whereiseveryone/guixrus

589f6db0d6e511f9812d245331f0ea2e3a56d0fd — jgart 6 months ago c0ce9c4
Add hare-hbase
1 files changed, 31 insertions(+), 0 deletions(-)

M guixrus/packages/common/hare.scm
M guixrus/packages/common/hare.scm => guixrus/packages/common/hare.scm +31 -0
@@ 57,6 57,37 @@
      (description "This package provides compression algorithms for Hare.")
      (license license:mpl2.0))))

(define-public hare-hbase
  (let ((commit "349c13d5452114cf31b26322cdea5bec937e8802")
        (revision "0"))
    (package
      (name "hare-hbase")
      (version (git-version "0.0.0" revision commit))
      (source
        (origin
          (method git-fetch)
          (uri (git-reference
                 (url "https://git.sr.ht/~whereiseveryone/hbase")
                 (commit commit)))
          (file-name (git-file-name name version))
          (sha256
            (base32 "106g0rxadg9wfh0ramsxn9gv648g7icxqqwanvqfnrq0ibkq3b4g"))))
      (build-system gnu-build-system)
      (arguments
        (list #:tests? #f ; There are no tests.
              #:make-flags #~(list (string-append "PREFIX=" #$output))
              #:phases
              #~(modify-phases %standard-phases
                 (delete 'configure)
                 (add-before 'build 'set-harecache
                   (lambda _
                     (setenv "HARECACHE" ".cache"))))))
      (inputs (list rus:hare-toolchain))
      (home-page "https://git.sr.ht/~whereiseveryone/hbase")
      (synopsis "UNIX utilities implemented in Hare")
      (description "Implementations of unix tools written in Hare.")
      (license license:gpl3+))))

(define-public hare-png
  (let ((commit "96a09c8d50b49d0a11443b62e13f23b90f42c623")
        (revision "0"))