summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-04-29 23:22:02 +0200
committerRicardo Wurmus <rekado@elephly.net>2017-04-29 23:22:02 +0200
commitafec15a3eb3e729d3e9e18c0074e2b133f0f2a83 (patch)
tree9ca459469fe48f8c16cda20816b0a008078da0bf
parent2144a3a7110f2058718812381998f8fd0f20c727 (diff)
libre: staging: Remove fcgi and fcgiwrap.
These packages are available in Guix upstream.
-rw-r--r--libre/custom/packages/staging.scm65
1 files changed, 2 insertions, 63 deletions
diff --git a/libre/custom/packages/staging.scm b/libre/custom/packages/staging.scm
index 39ea7d4..0fbc9b3 100644
--- a/libre/custom/packages/staging.scm
+++ b/libre/custom/packages/staging.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -20,69 +20,8 @@
#:use-module (guix utils)
#:use-module (guix packages)
#:use-module (guix download)
- #:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
- #:use-module (gnu packages)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages))
-(define-public fcgi
- (package
- (name "fcgi")
- (version "2.4.0")
- (source
- (origin
- (method url-fetch)
- ;; Upstream has disappeared
- (uri (string-append "https://sources.archlinux.org/other/packages/fcgi/"
- "fcgi-" version ".tar.gz"))
- (sha256
- (base32
- "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36"))
- (patches (search-patches "fcgi-2.4.0-poll.patch"
- "fcgi-2.4.0-gcc44-fixes.patch"))))
- (build-system gnu-build-system)
- (home-page "http://www.fastcgi.com")
- (synopsis "Language-independent, high-performant extension to CGI")
- (description "FastCGI is a language independent, scalable extension to CGI
-that provides high performance without the limitations of server specific
-APIs.")
- ;; This package is released under the Open Market License, a variant of
- ;; the Expat license, incompatible with the GPL.
- (license (license:non-copyleft "file://LICENSE.TERMS"))))
-(define-public fcgiwrap
- (package
- (name "fcgiwrap")
- (version "1.1.0")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://github.com/gnosek/fcgiwrap/"
- "archive/" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "07y6s4mm86cv7p1ljz94sxnqa89y9amn3vzwsnbq5hrl4vdy0zac"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f ; no tests included
- #:make-flags (list "CC=gcc")
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'bootstrap
- (lambda _
- (zero? (system* "autoreconf" "-vif")))))))
- (native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("pkg-config" ,pkg-config)))
- (inputs
- `(("fcgi" ,fcgi)))
- (home-page "https://nginx.localdomain.pl/wiki/FcgiWrap")
- (synopsis "Simple server for running CGI applications over FastCGI")
- (description "Fcgiwrap is a simple server for running CGI applications
-over FastCGI. It hopes to provide clean CGI support to Nginx (and other web
-servers that may need it).")
- (license license:expat)))