~whereiseveryone/guixrus

1 files changed, 70 insertions(+), 0 deletions(-)

A guixrus/packages/cowyo.scm
A guixrus/packages/cowyo.scm => guixrus/packages/cowyo.scm +70 -0
@@ 0,0 1,70 @@
;;; GNU Guix --- Functional package management for GNU
;;;
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; This file is not part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (guixrus packages cowyo)
  #:use-module (guix build-system go)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages golang)
  #:use-module (guixrus packages common go))

(define-public cowyo
  (package
    (name "cowyo")
    (version "2.12.0")
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/schollz/cowyo")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
          (base32 "0xld30kxk2lp31jj833d14ywca72i44j0acjgpypcicbjrdc563f"))))
    (build-system go-build-system)
    (arguments '(#:import-path "github.com/schollz/cowyo"))
    (home-page "https://github.com/schollz/cowyo")
    (synopsis "Getting Started")
    (description "This package provides a feature-rich wiki for minimalists")
    (license license:expat)))

(define-public cowyodel
  (package
    (name "cowyodel")
    (version "1.2.3")
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/schollz/cowyodel")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
          (base32 "0c1i7avzg55ncgvkc42pxac2rnaw8hgr02943ggmf5pm5xqpdqks"))))
    (build-system go-build-system)
    (arguments '(#:import-path "github.com/schollz/cowyodel"))
    (home-page "https://github.com/schollz/cowyodel")
    (synopsis "Demo")
    (description
      "Easily move things between computers using
@url{https://github.com/schollz/cowyo,cowyo}  :cow: :speech_balloon:")
    (license license:expat)))