Commit Graph

86310 Commits

Author SHA1 Message Date
R. RyanTM
b286ef9ff4 tfsec: 0.24.1 -> 0.25.0 2020-08-12 21:32:57 +00:00
R. RyanTM
044b15424c terraform-ls: 0.5.4 -> 0.6.0 2020-08-12 21:26:22 +00:00
Nick Hu
97538a9a55
Merge pull request #95059 from alexarice/agda-generic
agdaPackages.generic: init at v0.1
2020-08-12 21:49:11 +01:00
Nick Hu
0277b9dcf5
Merge pull request #90161 from alexarice/agda-categories
agda-categories: 0.1 -> 0.1.3.1
2020-08-12 21:46:47 +01:00
Lily Ballard
b02225db76 cocoapods-beta: 1.10.0.beta.1 -> 1.10.0.beta.2 2020-08-12 13:27:20 -07:00
Florian Klink
38c6c46796
Merge pull request #95247 from zowoq/deletevendor-check
gobetween, kustomize: remove deleteVendor, enable checks
2020-08-12 22:09:15 +02:00
oxalica
ebea92b8db
rust-analyzer: 2020-08-03 -> 2020-08-10 2020-08-13 02:02:14 +08:00
Wael Nasreddine
866eedcb69
bazel_3: use less resources when building Bazel (#95214)
Limit the resources Bazel is allowed to use during the build to 1/2 the
available RAM and 3/4 the available CPU cores. This should help avoid
overwhelming the build machine.
2020-08-12 10:47:01 -07:00
Robert Schütz
72b5ca9765
python.pkgs.construct: 2.9.45 -> 2.10.56 (#95189)
* python.pkgs.construct: 2.9.45 -> 2.10.56

* python.pkgs.pykeepass: fix dependencies
2020-08-12 18:58:45 +02:00
Jonathan Ringer
5880dc0d10 python3Packages.pybids: 0.10.2 -> 0.12.0 2020-08-12 09:27:00 -07:00
Jonathan Ringer
756e75b257 python3Packages.bids-validator: fix tests 2020-08-12 09:27:00 -07:00
Jonathan Ringer
6410d00025 python3Packages.cheroot: fix tests 2020-08-12 09:26:31 -07:00
Sirio Balmelli
e11d511222 python3Packages.scikit-build: 0.10.0 -> 0.11.1
Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2020-08-12 17:58:56 +02:00
Peter Simons
a6a8a6f691 Merge remote-tracking branch 'origin/master' into haskell-updates. 2020-08-12 17:56:26 +02:00
Peter Simons
c1936a8df9 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
b7e067af78.
2020-08-12 17:51:00 +02:00
Peter Simons
b7c4f4cdc7 LTS Haskell 16.9 2020-08-12 17:49:44 +02:00
R. RyanTM
14245e9ad4 operator-sdk: 0.19.2 -> 1.0.0 2020-08-12 15:35:56 +00:00
Robert Schütz
57dcbeca98 python.pkgs.pykeepass: fix dependencies 2020-08-12 17:33:15 +02:00
Robert Schütz
89f51ae949 python.pkgs.construct: 2.9.45 -> 2.10.56 2020-08-12 17:33:07 +02:00
Mario Rodas
5e6767e1ea
Merge pull request #95177 from r-ryantm/auto-update/seasocks
seasocks: 1.4.3 -> 1.4.4
2020-08-12 08:48:31 -05:00
zowoq
ffc53f66dc kustomize: remove deleteVendor, enable checks 2020-08-12 20:16:31 +10:00
R. RyanTM
863425d138 cpp-utilities: 5.5.0 -> 5.6.0 2020-08-12 07:22:56 +00:00
Mario Rodas
c5e5ac1cf7
nodejs-14_x: 14.7.0 -> 14.8.0
https://github.com/nodejs/node/releases/tag/v14.8.0
2020-08-12 04:20:00 +00:00
Tim Steinbach
8c0dabf8e9
Merge pull request #95230 from uosis/update-ammonite
ammonite: 2.0.4 -> 2.2.0
2020-08-12 08:36:01 -04:00
Symphorien Gibol
5810d6681f
ocamlPackages.prof_spacetime: init at 0.3.0 2020-08-12 14:01:44 +02:00
Florian Klink
5aca42698e
Merge pull request #93562 from flokli/fontconfig_210_remove
fontconfig_210: remove package
2020-08-12 13:45:41 +02:00
Symphorien Gibol
15d2b2136e
spacetime_lib: fix missing module
necessary for the upcoming prof_spacetime
2020-08-12 13:41:44 +02:00
Florian Klink
b761543f16 fontconfig_210: remove
This isn't used anymore anywhere, and vulnerable to CVE-2016-5384.
2020-08-12 13:40:46 +02:00
Jan Tojnar
74ea2b2123
meson: Fix rpath clearing
Meson allows projects to set `build_rpath` property, containing paths
that will be added during build but will be removed when installing.

When Meson removes build_rpath from `DT_RUNPATH` entry, it just writes
the shorter ␀-terminated new rpath over the old one to reduce
the risk of potentially breaking the ELF files
(when the linker does string de-duplication or something).
But this can cause much bigger problem for Nix, as it can produce
cut-in-half-by-␀ store path references.

For example, in systemd’s libudev, it was removing three `$ORIGIN`-relative paths from

    $ORIGIN/../libsystemd:$ORIGIN/../basic:$ORIGIN/../shared:…␀

resulting in the following `DT_RUNPATH` entry:

    …␀store/v589pqjhvxrj73g3r0xb41yr84z5pwb7-gcc-9.3.0-lib/lib␀

We previously handled this in `fix-rpath.patch` but the method we prevent
Meson from removing paths added to rpath through `NIX_LDFLAGS` was changed
during 0.55.0 update and I forgot about this second purpose of the patch.

Let’s re-add this clearing code, as it worked without issues for a long time.
2020-08-12 12:17:39 +02:00
Niklas Hambüchen
85d08220d5 mesa: Fix -Werror=int-conversion build error on musl.
Upstream PR I made: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6121
2020-08-12 03:40:44 +02:00
uosis
00eedc07f3 ammonite: 2.0.4 -> 2.2.0 2020-08-11 19:32:31 -06:00
Dennis Gosnell
733a02cf88
Merge pull request #92618 from Kiwi/matterhorn-Unique
matterhorn: fix build
2020-08-12 10:25:21 +09:00
Peter Simons
86700b0384 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
3da05632f7.
2020-08-12 02:30:26 +02:00
Robert Djubek
f78e3efb19
matterhorn: remove from broken list
also removes broken for the dependency Unique
2020-08-11 22:13:07 +00:00
Jan Tojnar
d27f04e59a
Merge pull request #94018 from r-ryantm/auto-update/gthree
gthree: 0.2.0 -> 0.9.0
2020-08-11 23:35:50 +02:00
Jan Tojnar
e4fc19e66e
gthree: 0.2.0 -> 0.9.0 2020-08-11 23:20:18 +02:00
Timothy Stott
ba7c0893d4
treewide: remove obsolete attribute goPackagePath in buildGoModule derivations (#95092)
The buildGoModule infrastructure does not make use of goPackagePath it is a residue from buildGoPackage.
2020-08-11 21:04:55 +00:00
Maximilian Bosch
4c3b64adf4
python3Packages.pytesseract: 0.3.4 -> 0.3.5
https://github.com/madmaze/pytesseract/releases/tag/v0.3.5
2020-08-11 22:54:26 +02:00
Maximilian Bosch
de96815a2e
evcxr: 0.5.2 -> 0.5.3
https://github.com/google/evcxr/blob/v0.5.3/RELEASE_NOTES.md
2020-08-11 22:54:26 +02:00
Michael Weiss
6b188c1f08
wlroots: Fix the build by not copying the library to $examples
Copying libwlroots isn't required anymore since the library runpath
of the example binaries now correctly references $out/lib anyway.

Fix #95205.
2020-08-11 22:45:12 +02:00
Vladimír Čunát
48618a1ab3
Merge #94790: luajit*: bugfix updates 2020-08-11 22:34:22 +02:00
Jonathan Ringer
fe8f927a6a python37Packages.pendulum: fix build add tests 2020-08-11 12:50:30 -07:00
Jonathan Ringer
20d25c3a8e python3Packages.poetry-core: build from source 2020-08-11 12:50:30 -07:00
Frederik Rietdijk
d58b4c9a14 python.pkgs.pendulum: fix build 2020-08-11 20:41:52 +02:00
Frederik Rietdijk
9c50cabc65 python.pkgs.poetry-core: init at 1.0.0a9 2020-08-11 20:41:35 +02:00
Frederik Rietdijk
2a1febbf78 python: pytzdata: 2019.3 -> 2020.1 2020-08-11 20:41:05 +02:00
Martin Weinelt
9e6ee27597 ansible_2_8: 2.8.13 -> 2.8.14 2020-08-11 10:12:29 -07:00
Tim Steinbach
2807aa9672
Merge pull request #95151 from yaroot/zulu
zulu8: 8.28.0.1 -> 8.48.0.53;  zulu: 10.1+11 -> 11.41.23
2020-08-11 11:49:15 -04:00
Michael Weiss
7a01d5aa42
Merge pull request #91050 from primeos/rav1e-cargo-c
Add cargo-c and a C-API for rav1e
2020-08-11 16:22:47 +02:00
Frederik Rietdijk
52419cc32e
Merge pull request #95127 from andersk/pypy-7.3.1
pypy: 7.1.1 -> 7.3.1
2020-08-11 16:04:53 +02:00
R. RyanTM
6d8cd1e3ed seasocks: 1.4.3 -> 1.4.4 2020-08-11 13:31:36 +00:00
Cyril Cohen
084d5c0b8c coq-elpi: 1.4.1 -> 1.5.1 2020-08-11 13:49:51 +02:00
Maximilian Bosch
15d16de8f1
scalafmt: 2.6.2 -> 2.6.4 2020-08-11 12:18:39 +02:00
Vincent Laporte
2c564010aa ocamlPackages.ppx_deriving_yojson: 3.5.2 → 3.5.3 2020-08-11 11:25:10 +02:00
Daniël de Kok
a93340d651
Merge pull request #94933 from danieldk/amdvlk-2020.Q3.3
amdvlk: 2020.Q3.2 -> 2020.Q3.3
2020-08-11 11:04:48 +02:00
Daniël de Kok
4c54e6ab5f ocamlPackages.uunf: 12.0.0 -> 13.0.0 2020-08-11 10:47:45 +02:00
Frederik Rietdijk
f707715136 Merge master into staging-next 2020-08-11 10:26:35 +02:00
Yan Su
d7d22f5443 zulu: 10.1+11 -> 11.41.23 2020-08-11 17:18:30 +09:00
Yan Su
de127352c4 zulu8: 8.28.0.1 -> 8.48.0.53 2020-08-11 17:18:30 +09:00
lewo
60d2ac5725
Merge pull request #94890 from lucperkins/opa-update
open-policy-agent: 0.15.0 -> 0.22.0
2020-08-11 09:49:38 +02:00
Matt Huszagh
2c71cf337a python3Packages.kinparse: init at unstable-2019-12-18 2020-08-10 22:45:54 -07:00
R. RyanTM
2097c213d1 libmaxminddb: 1.4.2 -> 1.4.3 2020-08-11 05:35:07 +00:00
Silvan Mosberger
f21c42143b
Merge pull request #48740 from midchildan/add-mirakurun
mirakurun: init at 3.3.0
2020-08-11 06:55:56 +02:00
Benjamin Hipple
0ea35cf25c
Merge pull request #95118 from drewrisinger/dr-pr-reno
reno: 2.3.2 -> 3.1.0
2020-08-10 22:19:07 -04:00
Benjamin Hipple
d4bbe9a3ed
Merge pull request #95085 from alexarice/agda-prelude-update
agda-prelude: compat-2.6.0 -> compat-2.6.1
2020-08-10 21:19:27 -04:00
Peter Simons
bb8c74439a hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
5fc79fb5dc.
2020-08-11 02:30:28 +02:00
Drew Risinger
ccb6b07c89 reno: 2.3.2 -> 3.1.0
Fix execution, and upgrade to latest version.
2020-08-10 19:55:40 -04:00
Anders Kaseorg
b31e4a20a4 pypy, pypy3: 7.1.1 -> 7.3.1
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-08-10 15:42:42 -07:00
Anders Kaseorg
6f2ec6d967 pythonInterpreters.pypy{27,36}_prebuilt: 7.1.1 -> 7.3.1
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-08-10 15:42:42 -07:00
Niklas Hambüchen
388076f985
Merge pull request #94205 from nh2/ilmbase-non-glibc-fpstate
openexr, ilmbase: Fix compilation on non-glibc.
2020-08-11 00:39:00 +02:00
Maximilian Bosch
5428974aa3
Merge pull request #95101 from etu/php72-drop-support
php: Drop PHP 7.2 support
2020-08-10 23:35:20 +02:00
Elis Hirwing
6be7d1c176
php: Drop PHP 7.2 support 2020-08-10 22:28:12 +02:00
Arnout Engelen
481e804309 python3Packages.qreactor: init at 2018-09-29 2020-08-10 12:10:47 -07:00
Arnout Engelen
002077c0a6 pythonPackages.enamlx: init at 0.4.1 2020-08-10 12:10:47 -07:00
Arnout Engelen
8aa47c15cc pythonPackages.enaml: init at 0.11.2 2020-08-10 12:10:47 -07:00
Arnout Engelen
cb62bb38b2 python3Packages.bytecode: init at 0.11.0 2020-08-10 12:10:47 -07:00
zimbatm
77da74c785
rustracerd: mark as broken (#95099)
It doesn't seem to be maintained upstream anymore?

Fixes the ycmd build.
2020-08-10 17:45:49 +00:00
Peter Simons
7df5c90f06 Merge remote-tracking branch 'origin/master' into haskell-updates. 2020-08-10 19:39:23 +02:00
Peter Simons
1493a31aa6
Merge pull request #94964 from ggreif/haskell-updates
ghc-8.10.x: add v8.10.2
2020-08-10 19:37:27 +02:00
Moritz Scheuren
4768d045f0 license changed to gpl3Plus (for gtg and liblarch) 2020-08-10 10:34:53 -07:00
Olli Helenius
7765f5cc4c pythonPackages.hcloud: 1.8.1 -> 1.9.0 2020-08-10 10:04:23 -07:00
Chris Ostrouchov
b1934ec6e9 pythonPackages.bash_kernel: refactor pinning bash package 2020-08-10 10:03:43 -07:00
Chris Ostrouchov
eacff247fd python3Packages.jupyter-c-kernel: init at 1.2.2 2020-08-10 10:03:43 -07:00
Chris Ostrouchov
2147589c7a pythonPackages.systemdspawner: init at 0.14 2020-08-10 10:03:43 -07:00
Daniël de Kok
1ae9146803
Merge pull request #94801 from r-ryantm/auto-update/medfile
medfile: 4.0.0 -> 4.1.0
2020-08-10 17:44:04 +02:00
Daniël de Kok
5e8076a1f9 git-quick-stats: properly wrap
git-quick-stats was not properly wrapped, making it fail in pure
and sandboxed environments.
2020-08-10 17:07:08 +02:00
Daniël de Kok
e828343d7c
Merge pull request #95058 from r-ryantm/auto-update/git-quick-stats
git-quick-stats: 2.1.3 -> 2.1.4
2020-08-10 16:44:00 +02:00
midchildan
c1caf509a9
mirakurun: init at 3.3.0 2020-08-10 23:38:52 +09:00
Peter Hoeg
02d8704c03
Merge pull request #94701 from NixOS/u/kmscon
kmscon: 8 -> unstable-2018-09-07
2020-08-10 22:24:15 +08:00
Daniel Șerbănescu
3a2ac8a744 gfbgraph: 0.2.3 -> 0.2.4 2020-08-10 16:21:58 +02:00
Alex Rice
8735356e27
agda-prelude: compat-2.6.0 -> compat-2.6.1 2020-08-10 15:07:49 +01:00
Alex Rice
c63ece0998
agdaPackages.generic: init at v0.1 2020-08-10 14:56:23 +01:00
Ryan Mulligan
0471d58658
Merge pull request #95036 from r-ryantm/auto-update/csvs-to-sqlite
csvs-to-sqlite: 1.0 -> 1.1
2020-08-10 06:41:57 -07:00
Jan Tojnar
0c3b48b7f6
Merge pull request #94197 from CRTified/pkg/lottieconverter 2020-08-10 15:05:39 +02:00
CRTified
2053fb35a2 rlottie: init at 0.1 2020-08-10 14:47:11 +02:00
Mario Rodas
0dc87c6e54
Merge pull request #95035 from r-ryantm/auto-update/clojure-lsp
clojure-lsp: 20200706T152722 -> 20200806T150857
2020-08-10 07:19:55 -05:00
sternenseemann
68c9ed2a7b ocamlPackages.ounit(2): 2.2.2 → 2.2.3 2020-08-10 14:09:49 +02:00
Mario Rodas
3bbdc0f2c4
Merge pull request #95054 from r-ryantm/auto-update/fly
fly: 6.4.0 -> 6.4.1
2020-08-10 07:07:02 -05:00
Dennis Gosnell
09e83e0cc2
Merge pull request #95067 from Munksgaard/haskell-updates
haskell-sexp: Unmark sexp-grammar as broken
2020-08-10 21:01:33 +09:00
Daniel Șerbănescu
c38b57f867 gtksourceview: 4.6.0 -> 4.6.1 2020-08-10 13:55:19 +02:00
Mario Rodas
f57bd49bb6
Merge pull request #95052 from r-ryantm/auto-update/flow
flow: 0.130.0 -> 0.131.0
2020-08-10 06:46:00 -05:00
Frederik Rietdijk
3f623b8f57 python.pkgs.numcodecs: disable several failing tests 2020-08-10 13:35:52 +02:00
Philip Munksgaard
4e049dbe50 haskellPackages.sexp-grammar: Unmark sexp-grammar as broken 2020-08-10 13:31:37 +02:00
Olli Helenius
db65fb527e
haskellPackages.finitary: unbreak 2020-08-10 13:36:28 +03:00
R. RyanTM
ecf96b8c29 git-quick-stats: 2.1.3 -> 2.1.4 2020-08-10 08:54:29 +00:00
Peter Simons
47fd4df1df hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
713abaa3a2.
2020-08-10 10:46:52 +02:00
Peter Simons
5ecee6daed Merge remote-tracking branch 'origin/master' into haskell-updates. 2020-08-10 10:45:40 +02:00
Christian Kampka
044f18a6f0
drone-cli: 1.2.1 -> 1.2.2 2020-08-10 10:32:33 +02:00
R. RyanTM
53c69e01d3 fly: 6.4.0 -> 6.4.1 2020-08-10 07:59:41 +00:00
R. RyanTM
8f06a4e3dd flow: 0.130.0 -> 0.131.0 2020-08-10 07:48:24 +00:00
zowoq
b004e48368
Merge pull request #94632 from zowoq/gomodule-check
buildGoModule: change doCheck default to true
2020-08-10 16:50:48 +10:00
Daniël de Kok
9ad213f08a
Merge pull request #95013 from 06kellyjac/deno_1.2.3
deno: 1.2.2 -> 1.2.3
2020-08-10 08:15:34 +02:00
zowoq
cea7cd902e buildGoModule packages: set doCheck = false 2020-08-10 16:02:30 +10:00
zowoq
cc06d7a26f buildGoModule: change doCheck default to true 2020-08-10 16:01:03 +10:00
Daniël de Kok
0a53fcc79d
Merge pull request #94994 from danieldk/blackmagic-unstable-2020-08-05
blackmagic: unstable-2020-02-20 -> unstable-2020-08-05
2020-08-10 07:49:48 +02:00
R. RyanTM
8d83c0176f csvs-to-sqlite: 1.0 -> 1.1 2020-08-10 05:12:22 +00:00
R. RyanTM
36ef614fae clojure-lsp: 20200706T152722 -> 20200806T150857 2020-08-10 04:39:35 +00:00
Michael Raskin
f70c1866aa
Merge pull request #94875 from matthuszagh/cgal
cgal: add patch so include files can be found by dependent packages
2020-08-10 04:25:18 +00:00
Michael Raskin
cfa0e3c884
Merge pull request #94996 from zowoq/darcs-context
lisp-modules/iterate.darcs-context: delete
2020-08-10 04:23:35 +00:00
Michael Raskin
30641fa8cb
Merge pull request #94919 from purcell/asdf-unix
asdf: don't restrict to linux, since darwin works too
2020-08-10 04:23:07 +00:00
R. RyanTM
447c94f40c asls: 0.4.0 -> 0.4.2 2020-08-10 01:20:31 +00:00
Dennis Gosnell
1ae9ecf3b4
Merge pull request #94891 from gvolpe/development/tools/dconf2nix
dconf2nix: init at 0.5.0
2020-08-10 09:40:27 +09:00
Peter Simons
5300a81125 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
c35986ae2c.
2020-08-10 02:30:27 +02:00
Martin Weinelt
342ce061c2 python3Packages.aiohttp-jinja2: ignore DeprecationWarnings 2020-08-09 16:16:44 -07:00
Matías Lang
e84a1c5c01 pythonPackages.flask_assets: fix tests
The changes in
e6178fe489
introduced in Flask 1.1.2 broke the tests of flask-assets.
2020-08-09 16:15:12 -07:00
Daniël de Kok
593ec809b9
Merge pull request #94991 from danieldk/amd-libflame
amd-libflame: init at 2.2
2020-08-09 22:18:02 +02:00
Jonathan Ringer
5ee08170d7 python3Packages.dash: 1.13.3 -> 1.14.0 2020-08-09 12:18:26 -07:00
Jonathan Ringer
2883f9f7e5 python3Packages.dash_table: 4.8.1 -> 4.9.0 2020-08-09 12:18:26 -07:00
Jonathan Ringer
52542ddc96 python3Packages.dash_renderer: 1.5.0 -> 1.6.0 2020-08-09 12:18:26 -07:00
Jonathan Ringer
442f30aecd python3Packages.dash_core_components: 1.10.1 -> 1.10.2 2020-08-09 12:18:26 -07:00
06kellyjac
d6b2b3775e deno: 1.2.2 -> 1.2.3 2020-08-09 18:33:56 +00:00
Jonathan Ringer
6f17a51e72 python2Packages.cryptography-vectors: pin at 2.9.2 2020-08-09 11:08:33 -07:00
Jonathan Ringer
22cc69ca01 python2Packages.cryptography: pin to 2.9.2 2020-08-09 11:08:33 -07:00
Jonathan Ringer
e09836723d hepmc3: 3.2.0 -> 3.2.2 2020-08-09 10:44:15 -07:00
Daniël de Kok
a81e873f4e minizinc: 2.2.3 -> 2.4.3, fix build
- Update minizinc to 2.4.3.
- Fix build with newer Bison versions.
2020-08-09 10:14:57 -07:00
Jonathan Ringer
e4133302dd python3Packages.cherrypy: 18.3.0 -> 18.6.0 2020-08-09 09:47:27 -07:00
Jonathan Ringer
bcdc5a92dd python3Packages.azure-core: fix tests 2020-08-09 09:32:02 -07:00
Jonathan Ringer
0db5e08e6b python3Packages.msrest: 0.6.17 -> 0.6.18 2020-08-09 09:32:02 -07:00
Gabriel Volpe
b987a31379 dconf2nix: init at 0.5.0 2020-08-09 17:58:27 +02:00
zowoq
19699d691c gettext: drop darwin patch 2020-08-09 17:41:12 +02:00
Mario Rodas
486f30936d
Merge pull request #94776 from r-ryantm/auto-update/leptonica
leptonica: 1.79.0 -> 1.80.0
2020-08-09 09:18:12 -05:00
Mario Rodas
cb25908315
Merge pull request #94906 from marsam/update-bazelisk
bazelisk: 1.5.0 -> 1.6.0
2020-08-09 09:08:21 -05:00
zowoq
d9d27abc01 lisp-modules/iterate.darcs-context: delete 2020-08-09 19:47:10 +10:00
Daniël de Kok
c8b3a0a9bd blackmagic: unstable-2020-02-20 -> unstable-2020-08-05
- Fixes build.
- `libftdi`, `pc-hosted`, and `pc-stlinkv2` platforms are replaced by
  `hosted`.
2020-08-09 10:46:01 +02:00
Luka Blaskovic
7c365103d7 luajit.pkgs.luaexpat: fix redefinition of luaL_setfuncs() 2020-08-09 07:31:02 +00:00
Daniël de Kok
a49a59bc6c amd-libflame: init at 2.2
libflame is a protable library for dense matrix computations,
providing a complete LAPACK implementation. The AMD fork of libflame
is optimized for AMD CPUs.
2020-08-09 08:29:08 +02:00
Elliott Villars
e449d07a26 pythonPackages.hdlparse: init at 1.0.4
Signed-off-by: Elliott Villars <elliottvillars@gmail.com>
2020-08-08 18:34:41 -07:00
Chris Ostrouchov
3f19239ee0 python3Packages.nix-kernel: init at 0.1 2020-08-08 18:16:36 -07:00
Peter Simons
28fe135bae hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
3f19d1f43c.
2020-08-09 02:30:25 +02:00
Jonathan Ringer
c256671411 python3Packages.dask-image: 0.2.0 -> 0.3.0 2020-08-08 17:07:52 -07:00
Jonathan Ringer
4d83f4510a python3Packages.stumpy: 1.0 -> 1.4 2020-08-08 17:07:52 -07:00
Jonathan Ringer
f6988ba81b python3Packages.streamz: 0.5.2 -> 0.5.4 2020-08-08 17:07:52 -07:00
Jonathan Ringer
a3b66fa656 python3Packages.dask: 2.14.0 -> 2.22.0 2020-08-08 17:07:52 -07:00
Martin Weinelt
a797f7ce42 python3Packages.hass-nabucasa: relax cryptography dependency 2020-08-08 16:17:17 -07:00
Maximilian Bosch
3c7fe5bb6a
python3Packages.dlib: 19.20 -> 19.21
https://github.com/davisking/dlib/releases/tag/v19.21
2020-08-08 23:43:43 +02:00
Martin Weinelt
069d28d326 pythonPackages.uvcclient: init at 0.11.0 2020-08-08 13:39:41 -07:00
Chris Ostrouchov
7b04c0ff13 pythonPackages.dask-gateway-server: init at 0.8.0 2020-08-08 13:33:03 -07:00
Chris Ostrouchov
050ab81b07 pythonPackages.dask-gateway: init at 0.8.0 2020-08-08 13:33:03 -07:00
Gabor Greif
ca9e5d0bb1 ghc-{8.8.2, 8.10.1}: make download URL consistent with other versions 2020-08-08 22:32:58 +02:00
Gabor Greif
621e26fe80 ghc-8.10.x: add v8.10.2
https://mail.haskell.org/pipermail/ghc-devs/2020-August/019131.html
2020-08-08 22:32:58 +02:00
Benjamin Hipple
e2171a1234
Merge pull request #94927 from danieldk/transformers-unix-final
python3Packages.transformers: enable on all Unix platforms
2020-08-08 14:13:58 -04:00
Daniël de Kok
57d4c67fb8
Merge pull request #93052 from danieldk/amd-blis-zen-only
amd-blis: init at 2.2
2020-08-08 20:01:24 +02:00
Ryan Mulligan
88c95264a2
Merge pull request #94899 from ryantm/arduino-cli
arduino-cli: init at 0.11.0
2020-08-08 08:58:12 -07:00
Ryan Mulligan
8315778d5d arduino-cli: init at 0.11.0 2020-08-08 08:11:26 -07:00
Benjamin Hipple
82a8b3c7a8
Merge pull request #94835 from bhipple/u/plaid-python
pythonPackags.plaid-python: 4.0.0 -> 6.0.0
2020-08-08 10:46:20 -04:00
Benjamin Hipple
50536ef148
Merge pull request #94840 from r-ryantm/auto-update/python2.7-bitarray
python27Packages.bitarray: 1.3.0 -> 1.5.0
2020-08-08 10:44:23 -04:00
Doron Behar
039056386d
luaPackages.pulseaudio: remove (#94939)
It's not maintained any more by upstream (by @doronbehar) and it doesn't
build correctly with `buildLuarocksPackage` (see #89767).
2020-08-08 15:43:13 +02:00
Alyssa Ross
5e7d581ffd libhugetlbfs: init at 2.22 2020-08-08 13:13:27 +00:00
Michael Weiss
32b7270c0d
range-v3: 0.10.0 -> 0.11.0 (#94887) 2020-08-08 13:54:58 +02:00
Daniël de Kok
40f8b2d2ee amdvlk: add danieldk as a maintainer 2020-08-08 12:44:58 +02:00
Daniël de Kok
506cb9592b amdvlk: add meta.changelog 2020-08-08 12:38:34 +02:00
Daniël de Kok
930f197e53 amdvlk: 2020.Q3.2 -> 2020.Q3.3
Changelog:
https://github.com/GPUOpen-Drivers/AMDVLK/releases/tag/v-2020.Q3.3
2020-08-08 12:17:38 +02:00
Daniël de Kok
a4cdc0213c
Merge pull request #94784 from r-ryantm/auto-update/libmatroska
libmatroska: 1.6.0 -> 1.6.1
2020-08-08 11:18:41 +02:00
Daniël de Kok
0d2f78130c
Merge pull request #94830 from r-ryantm/auto-update/petsc
petsc: 3.13.2 -> 3.13.3
2020-08-08 10:55:55 +02:00
Daniël de Kok
bc7b404b1a python3Packages.pytorch: fix library names in lib output on Darwin
The library name fixup was attempted on the dev output, whereas it should be
applied to the lib output.
2020-08-08 10:36:48 +02:00
Daniël de Kok
6ffc0fd601 python3Packages.pytorch: fix Darwin build by disabling GCD
PyTorch 1.6.0 has updated the vendored pthreadpool library, which has recently
added support for Grand Central Dispatch. Unfortunately, it uses functionality
(DISPATCH_APPLY_AUTO) that is only available since macOS 10.13, whereas we are
still using 10.12 libraries.

We can't directly pass through option to vendored libraries, since the setup.py
scripts creates/filters the options that are passed to CMake. So, instead, this
adds a small patch that disables the GCD functionality in pthreadpool.
2020-08-08 10:36:48 +02:00
Daniël de Kok
b10e79a261
Merge pull request #94911 from marsam/update-ocamlformat
ocamlformat: 0.14.2 -> 0.15.0
2020-08-08 10:20:19 +02:00
Daniël de Kok
ac99819975 python3Packages.transformers: enable on all Unix platforms 2020-08-08 09:58:44 +02:00
Daniël de Kok
3e6f7d3b31 python3Packages.sacremoses: enable on all Unix platforms 2020-08-08 09:58:36 +02:00
Vladimír Čunát
564f440b37
Merge #94704: gperftools: fix dlopen() on aarch64 2020-08-08 09:12:03 +02:00
Chris Ostrouchov
dcde340519 pythonPackages.dockerspawner: init at 0.11.1 2020-08-08 08:06:11 +02:00
Chris Ostrouchov
99f6fe1548 pythonPackages.batchspawer: init at 1.0.0 2020-08-08 08:06:11 +02:00
Vincent Laporte
b8dfca143c coq_8_12: 8.12+β1 → 8.12.0
coqPackages.equations: 1.2.2 → 1.2.3
2020-08-08 06:33:08 +02:00
Vincent Laporte
86fbad8466 ocamlPackages.lua-ml: 0.9 → 0.9.1 2020-08-08 06:17:23 +02:00
Barry Moore
b794182cb2 pythonPackages.jupyter-telemetry: init at 0.1.0 2020-08-07 19:59:39 -07:00
Barry Moore
102864c247 pythonPackages.jupyterhub: 1.0.0 -> 1.1.0 2020-08-07 19:59:39 -07:00
Steve Purcell
84d26ecbdd asdf: don't restrict to linux, since darwin works too 2020-08-08 14:31:57 +12:00
Mario Rodas
c10db9c14c
bazelisk: 1.5.0 -> 1.6.0
https://github.com/bazelbuild/bazelisk/releases/tag/v1.6.0
2020-08-07 19:46:54 -05:00
Peter Simons
cf41524a9e hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
cd9de56790.
2020-08-08 02:30:32 +02:00
Silvan Mosberger
9a452a6337
Merge pull request #94825 from bachp/qtwebkit-5.212.0-alpha4
qtwebkit: 5.212-alpha-01-26-2018 -> 5.212.0-alpha4
2020-08-08 01:30:20 +02:00
Louis Tim Larsen
e768fce754
libhdhomerun: add comment about UDP firewall rule
PR #94620
2020-08-08 01:01:33 +02:00
Frederik Rietdijk
6a201763b4 Merge master into staging-next 2020-08-07 23:01:57 +02:00
Roman Volosatovs
c9c957d476
gopls: 0.4.3 -> 0.4.4 (#94888) 2020-08-07 20:29:34 +00:00
John Ericson
0bb1b894aa
Merge pull request #88783 from NickHu/ayatana
libayatana-appindicator: init at 0.5.4 libayatana-indicator: init at 0.6.3 ayatana-ido: init at 0.4.90
2020-08-07 16:00:13 -04:00
Jonathan Ringer
036d924844 python3Packages.vega: fix build 2020-08-07 12:38:45 -07:00
Luc Perkins
d6611fb08a
opa: 0.15.0 -> 0.22.0 2020-08-07 12:33:52 -07:00
Gabor Greif
b18829ff92 Disable profiling builds for AArch64
see also 1353355a63
2020-08-07 20:53:37 +02:00
Utku Demir
ed1623421f ghcHEAD: 8.11.20200505 -> 8.11.20200731 2020-08-07 20:34:52 +02:00
Peter Simons
f50a34bbef haskell-lsp-test: update override to the latest version 2020-08-07 20:34:52 +02:00
Peter Simons
b38e6cf1c6 ghc-8.10.x: update override for optics-core 2020-08-07 20:34:52 +02:00
Peter Simons
a08c537cfb ghc-8.10.x: update override for dhall 2020-08-07 20:34:52 +02:00
Peter Simons
81475fabc8 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.5-13-g52041eb from Hackage revision
b1162ac6f1.
2020-08-07 20:34:44 +02:00
Gabor Greif
7b3dbe3dd3 ghc-{8.8.3, 8.8.4, 8.10.1}: fix typos 2020-08-07 20:34:42 +02:00
Peter Simons
9613e64f67 hackage2nix: update list of broken packages to fix evaluation errors 2020-08-07 20:34:42 +02:00
Peter Simons
e165f41942 LTS Haskell 16.8 2020-08-07 20:34:42 +02:00
Pamplemousse
35c702cc40 pythonPackages.binwalk: add dependencies
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
2020-08-07 10:41:44 -07:00
Evan Stoll
2b09ecd168 pythonPackages.cot: init at 2.2.1 2020-08-07 10:10:03 -07:00
markuskowa
b9bf9c9236
Merge pull request #94829 from matthuszagh/openmpi
openmpi: enable c++ bindings
2020-08-07 18:24:52 +02:00
Matt Huszagh
dd25bb756a cgal: add patch so include files can be found by dependent packages 2020-08-07 09:20:32 -07:00
Daniël de Kok
9531f984d0
Merge pull request #94420 from danieldk/onednn-1.6
oneDNN: 1.5.1 -> 1.6
2020-08-07 17:58:41 +02:00
Matt Huszagh
3f13e1af0d openmpi: enable C++ bindings 2020-08-07 08:31:07 -07:00
Daniël de Kok
49ef0fd51a rocclr: fix build (no OpenCL library is required)
rocclr builds fail since CMake was upgraded to 3.18. This version
introduces the REQUIRED option of find_library. However rocclr only
needs OpenCL headers. This change makes finding an OpenCL library
optional again.
2020-08-07 16:49:18 +02:00
Tim Steinbach
b71dc9d264
Merge pull request #94789 from jerith666/openjdk-8u265
openjdk8: 1.8.0_242 -> 1.8.0_265
2020-08-07 09:03:49 -04:00
Mario Rodas
feab14d327
Merge pull request #94775 from r-ryantm/auto-update/ldb
ldb: 2.1.4 -> 2.2.0
2020-08-07 07:24:35 -05:00
Oleksii Filonenko
3a3e61b54b
Merge pull request #94847 from colemickens/packet-cli
packet-cli: 0.0.7 -> 0.0.8
2020-08-07 14:09:35 +03:00
R. RyanTM
febbcb62ce nim: 1.2.4 -> 1.2.6 2020-08-07 12:37:05 +02:00
Max Wittig
585aa266d3
gitlab-runner: 13.2.0 -> 13.2.2 (#94818) 2020-08-07 09:24:58 +00:00
Damien Cassou
101eda66b6
Merge pull request #94781 from DamienCassou/cypress-4.12.1
cypress: 4.9.0 -> 4.12.1
2020-08-07 11:21:55 +02:00
R. RyanTM
6d85f8d55b python27Packages.braintree: 4.2.0 -> 4.3.0 2020-08-07 00:52:19 -07:00
R. RyanTM
014d494e05 faudio: 20.07 -> 20.08 2020-08-07 00:36:08 -07:00
Pascal Bach
2cfff96eff qtwebkit: 5.212-alpha-01-26-2018 -> 5.212.0-alpha4 2020-08-07 09:31:52 +02:00
R. RyanTM
37e6ac0410 flyctl: 0.0.135 -> 0.0.137 2020-08-07 00:18:54 -07:00
R. RyanTM
6e276d3612 dbmate: 1.9.0 -> 1.9.1 2020-08-07 00:16:19 -07:00
R. RyanTM
c542d21686 mockgen: 1.4.3 -> 1.4.4 2020-08-07 00:07:54 -07:00
R. RyanTM
4d67cf18d8 python27Packages.azure-mgmt-monitor: 0.10.0 -> 0.11.0 2020-08-06 23:39:16 -07:00
Mario Rodas
cf5bc04fcf python3Packages.scrapy: 2.2.1 -> 2.3.0 2020-08-06 23:03:45 -07:00
Mario Rodas
4b5bae260a python3Packages.itemloaders: init at 1.0.1 2020-08-06 23:03:45 -07:00
R. RyanTM
bfac863728 python27Packages.cli-helpers: 2.0.1 -> 2.1.0 2020-08-06 23:00:42 -07:00
R. RyanTM
20032b1ef6 python37Packages.cfgv: 3.1.0 -> 3.2.0 2020-08-06 23:00:20 -07:00
Cole Mickens
dc5428e70b
packet-cli: alias packet-cli as packet 2020-08-06 22:39:43 -07:00
Cole Mickens
e4f471da97
packet-cli: 0.0.7 -> 0.0.8 2020-08-06 21:53:34 -07:00
Mario Rodas
07e74acd0f
ocamlformat: add marsam to maintainers 2020-08-07 04:20:00 +00:00
Mario Rodas
22594a9d4a ocamlformat: 0.14.2 -> 0.15.0
https://github.com/ocaml-ppx/ocamlformat/releases/tag/0.15.0
2020-08-06 23:20:00 -05:00
zowoq
1a83aa1190 go_1_13: 1.13.14 -> 1.13.15 2020-08-07 13:44:42 +10:00
zowoq
32e87e8b02 cproto: use patch file extension 2020-08-07 13:43:35 +10:00
zowoq
ed2e74d9db ocamlPackages.gmetadom: use patch file extension 2020-08-07 13:43:35 +10:00
Mario Rodas
dc2aa26ba9
Merge pull request #94802 from xoe-labs/da-update-skaffold
skaffold: 1.12.1 → 1.13.1
2020-08-06 22:30:07 -05:00
R. RyanTM
4d29e78c69 python27Packages.bitarray: 1.3.0 -> 1.5.0 2020-08-07 03:15:30 +00:00
R. RyanTM
ca9c2e3548 petsc: 3.13.2 -> 3.13.3 2020-08-07 12:44:29 +10:00
Benjamin Hipple
6350ea2538 pythonPackags.plaid-python: 4.0.0 -> 6.0.0
Tested end-to-end with my plaid python scripts.
2020-08-06 22:17:17 -04:00
Silvan Mosberger
1c918cf06a
Merge pull request #94108 from lopsided98/wxpython-remove-deps
python3Packages.wxPython_4_0: remove unused dependencies
2020-08-07 01:58:43 +02:00
worldofpeace
c08a2bfb20
Merge pull request #94815 from matthuszagh/gl2ps
gl2ps: make cmake a native build input
2020-08-06 19:54:33 -04:00
John Wiegley
6a359b2333
libxml2Python: Darwin builds require libintl (better fix) 2020-08-06 15:52:57 -07:00
Matt Huszagh
deb0a6ce6e gl2ps: make cmake a native build input 2020-08-06 12:10:26 -07:00
Maximilian Bosch
a4e77ce9cf
strace: 5.7 -> 5.8
https://github.com/strace/strace/releases/tag/v5.8
2020-08-06 20:10:26 +02:00
Sarah Brofeldt
0db9545355
Merge pull request #94786 from s1341/master
pahole: 1.16 -> 1.17
2020-08-06 19:27:01 +02:00
David Arnold
77c4dae8bc
skaffold: 1.12.1 → 1.13.1 2020-08-06 12:12:39 -05:00
Ben Wolsieffer
7f15e31671 python3Packages.wxPython_4_0: remove manual wrapPythonPrograms invocation
This was causing programs to be wrapped twice, as wrapping occurs automatically
during the fixup phase.
2020-08-06 12:54:43 -04:00
Ben Wolsieffer
8b76b92065 python3Packages.wxPython_4_0: enable format hardening
This was inherited from wxPython 3 and does not seem to be necessary.
2020-08-06 12:54:43 -04:00
Ben Wolsieffer
430936519c python3Packages.wxPython_4_0: remove unused dependencies
The package contains no references to many of its declared dependencies, and
the build succeeds without them.
2020-08-06 12:54:41 -04:00