blob: 76e9e0e4c4ddf1eaa0489dd1b5a53558344caf53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
;;; guile-bstruct -- Binary structures for Guile
;;; Copyright © 2024 David Thompson <dthompson2@worcester.edu>
;;;
;;; Licensed under the Apache License, Version 2.0 (the "License");
;;; you may not use this file except in compliance with the License.
;;; You may obtain a copy of the License at
;;;
;;; http://www.apache.org/licenses/LICENSE-2.0
;;;
;;; Unless required by applicable law or agreed to in writing, software
;;; distributed under the License is distributed on an "AS IS" BASIS,
;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;;; See the License for the specific language governing permissions and
;;; limitations under the License.
;;; Commentary:
;;
;; Development environment for GNU Guix.
;;
;; To setup the development environment, run the following:
;;
;; guix shell
;; ./bootstrap
;; ./configure
;;
;; To build the package, run:
;;
;; guix build -f guix.scm
;;
;;; Code:
(use-modules (guix packages)
((guix licenses) #:prefix license:)
(guix download)
(guix git)
(guix git-download)
(guix build-system gnu)
(guix utils)
(gnu packages)
(gnu packages autotools)
(gnu packages pkg-config)
(gnu packages texinfo)
(gnu packages guile))
(package
(name "guile-bstruct")
(version "0.1.0-git")
(source (git-checkout (url (dirname (current-filename)))))
(build-system gnu-build-system)
(arguments
'(#:make-flags '("GUILE_AUTO_COMPILE=0")))
(native-inputs (list autoconf automake pkg-config texinfo))
(inputs (list guile-3.0-latest))
(synopsis "Efficient binary structures for Guile")
(description "Guile-bstruct provides an efficient implementation of low-level binary
structures for Guile Scheme.")
(home-page "https://dthompson.us/projects/guile-bstruct.html")
(license license:asl2.0))
|