From 8094126c54f37a95dd344869491e334c8e4c2c37 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 9 May 2017 18:52:31 +0000 Subject: [PATCH 1/2] gnu: Add geomyidae. * gnu/packages/web.scm (geomyidae): New variable. --- gnu/packages/web.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 33689042a..fdb2fcae1 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6130,3 +6130,39 @@ based on this library, allowing Perl programmers to easily validate HTML.") object. It's meant as a replacement for @code{HTML::Lint}, which is written in Perl but is not nearly as capable as @code{HTML::Tidy}.") (license l:artistic2.0))) + +(define-public geomyidae + (package + (name "geomyidae") + (version "0.29") + (source + (origin + (method url-fetch) + (uri (string-append "http://git.r-36.net/geomyidae/snapshot/" + "geomyidae-" version ".tar.bz2")) + (sha256 + (base32 + "0qxgxp6psfrgfqhndyq2z54nb1qrmvvljddnxdwp207jbz366bja")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=gcc" + (string-append "PREFIX=" + (assoc-ref %outputs "out"))) + #:tests? #f ;No tests + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (home-page "http://git.r-36.net/geomyidae") + (synopsis "Small gopher server") + (description + "Geomyidae is a gopherd for GNU/Linux and BSD. +Its features include: + address@hidden address@hidden gopher menus (see index.gph for an example) address@hidden dir listings (if no index.gph was found) address@hidden cgi support (.cgi files are executed) address@hidden search support in CGI files address@hidden logging (-l option) and loglevels (-v option) address@hidden enumerate\n") + (license l:x11))) -- 2.15.0