Initial commit

This commit is contained in:
Jacob Hrbek 2022-10-13 06:59:05 +02:00
commit 3d4dcfbe3c
Signed by: kreyren
GPG Key ID: 667F0DAFAF09BA2B
4 changed files with 37 additions and 0 deletions

7
.gitignore vendored Normal file

@ -0,0 +1,7 @@
*.go # Guile Objects
# Temporary files
*.tmp # Generic
*~ # vim
.#* # emacs
\#*\# # emacs

5
.guix-channel Normal file

@ -0,0 +1,5 @@
;; -*- mode: scheme; -*-
(channel
(version 0)
(url "https://git.dotya.ml/kreyren/guix-hello"))

22
packages/hello.scm Normal file

@ -0,0 +1,22 @@
(define-module (hello packages hello)
#:use-module (guix)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses)
#:select (gpl3+)))
(define-public hello
(package
(name "hello")
(version "2.12.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/hello/hello-" version
".tar.gz"))
(sha256
(base32
"086vqwk2wl8zfs47sq2xpjc9k066ilmb8z6dn0q6ymwjzlm196cd"))))
(build-system gnu-build-system)
(synopsis "Hello, GNU world: An example GNU package")
(description "Guess what GNU Hello prints!")
(home-page "http://www.gnu.org/software/hello/")
(license gpl3+)))

3
zz-README.org Normal file

@ -0,0 +1,3 @@
#+TITLE: guix-hello
Template repository to easy new guix channel development