Browse Source

Stuff

master
Silas Vedder 2 years ago
parent
commit
9b6ff8e420
  1. 0
      README.org
  2. 17
      guix.scm

0
README.org

17
guix.scm

@ -2,6 +2,7 @@
(guix packages)
((guix licenses) #:prefix license:)
(guix download)
(guix git-download)
(guix build-system gnu)
(gnu packages)
(gnu packages autotools)
@ -10,10 +11,18 @@
(gnu packages pkg-config)
(gnu packages texinfo))
(package
(define-public bible-tools
(package
(name "bible-tools")
(version "1.0")
(source "./bible-tools-1.0.tar.gz")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.silasvedder.xyz/silasfox/bible-tools.git")
(commit "8b23959fed8d15ba074a354b85c42cc587d9c0a2")))
(file-name "bible-tools-1.0-checkout")
(sha256 (base32 "119l6fbj7x0rs0jnczjhkyqmiiwbx2b944985qykgmdb557p5bhf"))))
(build-system gnu-build-system)
(arguments
`(#:modules
@ -81,4 +90,6 @@
(synopsis "")
(description "")
(home-page "")
(license license:gpl3+))
(license license:gpl3+)))
bible-tools

Loading…
Cancel
Save