WTK/guix.scm

23 lines
742 B
Scheme
Raw Normal View History

2022-07-25 22:03:33 +02:00
(use-modules (guix build-system copy)
(guix gexp)
(guix git-download)
(guix licenses)
(guix packages))
2022-11-12 10:00:51 +01:00
(let ((%source-dir (dirname (current-filename))))
2022-07-25 22:03:33 +02:00
(package
(name "sjw-wtk")
(version "devel")
2022-11-12 10:00:51 +01:00
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
2022-07-25 22:03:33 +02:00
(build-system copy-build-system)
(arguments
2022-11-12 10:00:51 +01:00
'(#:install-plan '(("src" "lib/SJW/WTK"))))
2022-07-25 22:03:33 +02:00
(home-page "https://git.marvid.fr/Tissevert/WTK")
(synopsis "The Web Tool Kit")
(description
2022-11-12 10:00:51 +01:00
"The Web Tool Kit aims at providing high-level abstraction modules to
build web applications easily.")
2022-07-25 22:03:33 +02:00
(license gpl3+)))