Initial commit
This commit is contained in:
commit
3d4dcfbe3c
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
*.go # Guile Objects
|
||||
|
||||
# Temporary files
|
||||
*.tmp # Generic
|
||||
*~ # vim
|
||||
.#* # emacs
|
||||
\#*\# # emacs
|
5
.guix-channel
Normal file
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
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
3
zz-README.org
Normal file
@ -0,0 +1,3 @@
|
||||
#+TITLE: guix-hello
|
||||
|
||||
Template repository to easy new guix channel development
|
Loading…
Reference in New Issue
Block a user