guile-spam-filter/guix.scm

31 lines
669 B
Scheme
Raw Permalink Normal View History

2024-08-10 16:29:45 +01:00
(use-modules
(gnu packages)
(gnu packages guile)
2024-09-12 17:38:00 +01:00
(guix build-system guile)
2024-08-10 16:29:45 +01:00
(guix gexp)
((guix licenses) #:prefix license:)
(guix packages)
(srfi srfi-1))
(package
(name "guile-spam-filter")
2024-09-12 17:38:00 +01:00
(version "0.1.0")
2024-08-10 16:29:45 +01:00
(source
(local-file
(dirname (current-filename))
#:recursive?
#t
#:select?
(lambda (file stat)
(not (any (lambda (my-string)
(string-contains file my-string))
(list ".git" ".dir-locals.el" "guix.scm"))))))
2024-09-12 17:38:00 +01:00
(build-system guile-build-system)
2024-08-10 16:29:45 +01:00
(native-inputs
2024-09-12 17:38:00 +01:00
(list guile-3.0))
2024-08-10 16:29:45 +01:00
(synopsis "")
(description "")
(home-page "")
(license license:gpl3+))