mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
52 lines
653 B
Nix
52 lines
653 B
Nix
{ callPackage, lib, stdenv, ... }@_args:
|
|
|
|
let
|
|
base = callPackage ./generic.nix (_args // {
|
|
version = "8.0.22";
|
|
hash = "sha256-40KRjT7NQi8QAy3wrD/7Dhf1aPrWz44jK296ah/cPJw=";
|
|
});
|
|
|
|
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 ]))
|