diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-07-05 14:37:13 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-07-05 14:37:13 +0300 |
| commit | 9cd4760a12e8cb3b96fbc35e08109231cb75b326 (patch) | |
| tree | ecc62974c5d29cabf84f2c6c0a8d7487693eb0d9 | |
| parent | wigust: Delete image-viewers. (diff) | |
| download | guix-wigust-9cd4760a12e8cb3b96fbc35e08109231cb75b326.tar.gz | |
wigust: Delete php.
* wigust/packages/php.scm: Delete file.
* .gitlab-ci.yml (php): Delete job.
| -rw-r--r-- | .gitlab-ci.yml | 5 | ||||
| -rw-r--r-- | wigust/packages/php.scm | 60 |
2 files changed, 0 insertions, 65 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 221cc82..7a81d18 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,11 +44,6 @@ lisp: variables: FILE: wigust/packages/lisp.scm -php: - extends: .build - variables: - FILE: wigust/packages/php.scm - pulseaudio: extends: .build variables: diff --git a/wigust/packages/php.scm b/wigust/packages/php.scm deleted file mode 100644 index 564886c..0000000 --- a/wigust/packages/php.scm +++ /dev/null @@ -1,60 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com> -;;; -;;; This file is part of GNU Guix. -;;; -;;; GNU Guix is free software; you can redistribute it and/or modify it -;;; under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 3 of the License, or (at -;;; your option) any later version. -;;; -;;; GNU Guix is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of -;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;;; GNU General Public License for more details. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. - -(define-module (wigust packages php) - #:use-module (gnu packages) - #:use-module (gnu packages algebra) - #:use-module (gnu packages aspell) - #:use-module (gnu packages base) - #:use-module (gnu packages bison) - #:use-module (gnu packages compression) - #:use-module (gnu packages curl) - #:use-module (gnu packages cyrus-sasl) - #:use-module (gnu packages databases) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages gd) - #:use-module (gnu packages gettext) - #:use-module (gnu packages glib) - #:use-module (gnu packages gnupg) - #:use-module (gnu packages image) - #:use-module (gnu packages linux) - #:use-module (gnu packages multiprecision) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pcre) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages readline) - #:use-module (gnu packages textutils) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) - #:use-module (gnu packages xml) - #:use-module (gnu packages xorg) - #:use-module (gnu packages php) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix build-system gnu) - #:use-module (guix utils) - #:use-module ((guix licenses) #:prefix license:)) - -(define-public php-with-bcmath - (package - (inherit php) - (name "php-with-bcmath") - (arguments - (substitute-keyword-arguments (package-arguments php) - ((#:configure-flags flags) - `(cons "--enable-bcmath" ,flags)))))) |
