mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
52 lines
654 B
Nix
52 lines
654 B
Nix
|
{ callPackage, lib, stdenv, ... }@_args:
|
||
|
|
||
|
let
|
||
|
base = callPackage ./generic.nix (_args // {
|
||
|
version = "8.1.1";
|
||
|
sha256 = "sha256-j4vJytbNEk7cER99sKEJdF4vY4dwoQGzwiopU/eptA4=";
|
||
|
});
|
||
|
|
||
|
in
|
||
|
base.withExtensions ({ all, ... }: with all; ([
|
||
|
bcmath
|
||
|
calendar
|
||
|
curl
|
||
|
ctype
|
||
|
dom
|
||
|
exif
|
||
|
fileinfo
|
||
|
filter
|
||
|
ftp
|
||
|
gd
|
||
|
gettext
|
||
|
gmp
|
||
|
iconv
|
||
|
intl
|
||
|
ldap
|
||
|
mbstring
|
||
|
mysqli
|
||
|
mysqlnd
|
||
|
opcache
|
||
|
openssl
|
||
|
pcntl
|
||
|
pdo
|
||
|
pdo_mysql
|
||
|
pdo_odbc
|
||
|
pdo_pgsql
|
||
|
pdo_sqlite
|
||
|
pgsql
|
||
|
posix
|
||
|
readline
|
||
|
session
|
||
|
simplexml
|
||
|
sockets
|
||
|
soap
|
||
|
sodium
|
||
|
sqlite3
|
||
|
tokenizer
|
||
|
xmlreader
|
||
|
xmlwriter
|
||
|
zip
|
||
|
zlib
|
||
|
] ++ lib.optionals (!stdenv.isDarwin) [ imap ]))
|