1234567891011121314151617181920 |
- (define-module (gnu packages bogofilter-smtpd)
- )
- (define-public bogofilter-smptd
- (package
- (name "bogofilter-smtpd")
- (version "0.0.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.thj.no/thor/bogofilter-smtpd")
- (commit "025898f437")))))
- (build-system gnu-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (delete 'configure))))
- ))
|