Jörg Thalheim
d266ad7d2c
Merge pull request #84481 from bcdarwin/fix-sedlex-inputs
...
ocamlPackages.sedlex: fix dependencies
2020-04-06 16:07:27 +01:00
Ben Darwin
77901a96da
ocamlPackages.sedlex: fix dependencies
2020-04-06 10:48:42 -04:00
Michael Raskin
dc8af33d85
Merge pull request #84374 from r-ryantm/auto-update/gl2ps
...
gl2ps: 1.4.0 -> 1.4.1
2020-04-06 14:41:06 +00:00
R. RyanTM
e5d683a375
python37Packages.cmd2: 1.0.0 -> 1.0.1
2020-04-06 15:59:39 +02:00
Ryan Mulligan
2e5672920e
Merge pull request #84329 from r-ryantm/auto-update/armadillo
...
armadillo: 9.850.1 -> 9.860.1
2020-04-06 06:10:16 -07:00
markuskowa
d449e60555
Merge pull request #84396 from r-ryantm/auto-update/hwloc
...
hwloc: 2.1.0 -> 2.2.0
2020-04-06 11:10:29 +02:00
Mario Rodas
415e26531d
Merge pull request #84156 from marsam/update-grpc
...
grpc: 1.27.1 -> 1.28.0
2020-04-05 21:59:09 -05:00
Mario Rodas
5a69756860
Merge pull request #84333 from r-ryantm/auto-update/closure-compiler
...
closurecompiler: 20200224 -> 20200315
2020-04-05 20:13:19 -05:00
Mario Rodas
d47c8ab5bd
Merge pull request #84376 from r-ryantm/auto-update/flyway
...
flyway: 6.2.4 -> 6.3.2
2020-04-05 20:05:37 -05:00
Maximilian Bosch
720b3eaf2b
Merge pull request #84410 from r-ryantm/auto-update/intel-graphics-compiler
...
intel-graphics-compiler: 1.0.3151 -> 1.0.3627
2020-04-06 03:00:47 +02:00
Mario Rodas
1c7b7c8fee
Merge pull request #84404 from r-ryantm/auto-update/jruby
...
jruby: 9.2.11.0 -> 9.2.11.1
2020-04-05 19:56:56 -05:00
Mario Rodas
6fca9ab047
Merge pull request #84403 from r-ryantm/auto-update/joker
...
joker: 0.14.2 -> 0.15.0
2020-04-05 19:55:55 -05:00
R. RyanTM
f01a99ac30
intel-graphics-compiler: 1.0.3151 -> 1.0.3627
2020-04-05 23:59:00 +00:00
R. RyanTM
84c2b8324d
jruby: 9.2.11.0 -> 9.2.11.1
2020-04-05 22:06:39 +00:00
R. RyanTM
89840eb7ae
joker: 0.14.2 -> 0.15.0
2020-04-05 22:01:56 +00:00
R. RyanTM
174f61b814
hwloc: 2.1.0 -> 2.2.0
2020-04-05 21:20:30 +00:00
Ryan Mulligan
247458f606
Merge pull request #84342 from r-ryantm/auto-update/distgen
...
distgen: 1.4 -> 1.5
2020-04-05 13:14:57 -07:00
R. RyanTM
492599e062
flyway: 6.2.4 -> 6.3.2
2020-04-05 18:25:38 +00:00
R. RyanTM
410db9ea23
gl2ps: 1.4.0 -> 1.4.1
2020-04-05 18:05:33 +00:00
Elis Hirwing
3b6539896b
Merge pull request #83896 from etu/slim-down-default-php-v3
...
PHP: Make the default package more sane [v3]
2020-04-05 20:00:03 +02:00
Maximilian Bosch
1ca8ee8111
Merge pull request #84296 from catern/hydrauri
...
hydra: add dep on perlPackages.CatalystPluginSmartURI
2020-04-05 18:29:54 +02:00
Benjamin Hipple
0454fae7ca
Merge pull request #84130 from OmnipotentEntity/rfc45-part2
...
treewide: quoted urls for RFC45, only the rebuilds
2020-04-05 11:15:20 -04:00
talyz
ca8b8a26e9
php: Add enabledExtensions attribute to PHP derivations
...
This provides a means to build a PHP package based on a list of
extensions from another.
For example, to generate a package with all default extensions
enabled, except opcache, but with ImageMagick:
php.withExtensions (e:
(lib.filter (e: e != php.extensions.opcache) php.enabledExtensions)
++ [ e.imagick ])
2020-04-05 16:46:38 +02:00
talyz
b4d289a7ae
php: Add missing hash extension to php < 7.4
2020-04-05 16:45:53 +02:00
talyz
1345e5b763
php: Add withExtensions as a simpler alternative to buildEnv
2020-04-05 16:45:47 +02:00
talyz
4ff523f691
php: Simplify php-packages import, rename exts -> extensions
2020-04-05 16:45:41 +02:00
Elis Hirwing
1b69056e46
php: passthru .dev output as well
2020-04-05 16:45:23 +02:00
Elis Hirwing
a2099156ec
php: split php.packages to php.packages and php.extensions
...
So now we have only packages for human interaction in php.packages and
only extensions in php.extensions. With this php.packages.exts have
been merged into the same attribute set as all the other extensions to
make it flat and nice.
The nextcloud module have been updated to reflect this change as well
as the documentation.
2020-04-05 16:45:17 +02:00
Elis Hirwing
0dc95728ba
nixos/php: Move the pcre tests to the php test attribute
2020-04-05 16:44:59 +02:00
talyz
716fd0e2f5
php.buildEnv: Put the extraConfig snippet after extensions
...
Make sure all the extensions are loaded first, then read the custom
config where possible.
2020-04-05 16:44:31 +02:00
Elis Hirwing
82cd2fbbf4
php: Wrap the programs and provide an environment variable instead of a flag
2020-04-05 16:44:25 +02:00
talyz
90dcab948c
php.packages: Use derivations for internalDeps in mkExtension
...
Make mkExtension put headers in the dev output and use them, instead of
a different part of the current source tree, when referring to another
extension by using internalDeps.
This means external extensions can be built against the internal ones.
2020-04-05 16:44:01 +02:00
talyz
b1106a1851
phpPackages: Move phpPackages to php.packages
...
This means php packages can now refer to other php packages by looking
them up in the php.packages attribute and gets rid of the internal
recursive set previously defined in php-packages.nix. This also means
that in applications where previously both the php package and the
corresponding version of the phpPackages package set had to be
specified, the php package will now suffice.
This also adds the phpWithExtensions parameter to the
php-packages.nix, which can be used by extensions that need a fully
featured PHP executable.
2020-04-05 16:43:50 +02:00
Michael Reilly
e20f308b8e
treewide: quoted urls for RFC45, only the rebuilds
2020-04-05 10:17:15 -04:00
Bastien Rivière
8986e95dca
flutter: update channels + fix dev channel
2020-04-05 15:35:11 +02:00
Sander van der Burg
542a74a9dc
Merge pull request #82118 from lucafavatella/androidenv-update-2
...
androidenv: update generated expressions
2020-04-05 14:59:04 +02:00
R. RyanTM
e6249ab727
distgen: 1.4 -> 1.5
2020-04-05 12:00:26 +00:00
Florian Klink
40dcac87f4
Merge pull request #84336 from r-ryantm/auto-update/python2.7-bpython
...
python27Packages.bpython: 0.18 -> 0.19
2020-04-05 13:50:22 +02:00
R. RyanTM
7837086b6b
python27Packages.bpython: 0.18 -> 0.19
2020-04-05 10:44:18 +00:00
R. RyanTM
b955472cad
closurecompiler: 20200224 -> 20200315
2020-04-05 10:22:40 +00:00
R. RyanTM
ceaf6f1e1c
armadillo: 9.850.1 -> 9.860.1
2020-04-05 09:11:25 +00:00
Frederik Rietdijk
866c5aa090
Merge master into staging-next
2020-04-05 08:33:39 +02:00
Dmitry Kalinkin
f601ab37c2
Merge pull request #83748 from veprbl/pr/python_docker_dontUseSetuptoolsCheck
...
pythonPackages.docker: use dontUseSetuptoolsCheck
2020-04-05 00:41:06 -04:00
Dmitry Kalinkin
e163a369c7
Merge pull request #83737 from veprbl/pr/libxslt_override_fix
...
libxml2,libxslt: fix pythonSupport=false override
2020-04-04 23:31:27 -04:00
Mario Rodas
cf096a6780
Merge pull request #84304 from r-ryantm/auto-update/kubie
...
kubie: 0.7.1 -> 0.7.3
2020-04-04 21:44:55 -05:00
Jan Tojnar
dead7ec111
libmodulemd: 2.6.0 → 2.9.2
2020-04-05 03:54:09 +02:00
R. RyanTM
72fc9fac51
kubie: 0.7.1 -> 0.7.3
2020-04-05 01:36:22 +00:00
Anderson Torres
f0959a7b0c
Merge pull request #84284 from AndersonTorres/update-babashka
...
babashka: 0.0.71 -> 0.0.78
2020-04-04 22:26:40 -03:00
lewo
fc536d3f8a
Merge pull request #83988 from armin1402/master
...
nexus: 3.20.1-01 -> 3.22.0-02
2020-04-05 02:07:48 +02:00
Spencer Baugh
ed10432541
hydra: add dep on perlPackages.CatalystPluginSmartURI
...
This plugin allows configuring the URLs generated by Catalyst (and
therefore by Hydra) to be relative instead of absolute, which makes it
automatically behave correctly when Hydra is accessed both directly
and behind a reverse proxy.
2020-04-04 20:02:09 -04:00