Commit graph

9627 commits

Author SHA1 Message Date
github-actions[bot] 965c8e08a5
Merge master into staging-next 2021-04-19 12:06:23 +00:00
Daniël de Kok cf00ef6548
Merge pull request #119783 from danieldk/remove-cuda-9
cudatoolkit-{9,9_0,9_1,9_2}: remove
2021-04-19 08:30:10 +02:00
github-actions[bot] c577e0ee09
Merge staging-next into staging 2021-04-19 00:15:24 +00:00
github-actions[bot] a28d31ed86
Merge master into staging-next 2021-04-19 00:15:22 +00:00
Robert Scott 90725c7c6d
Merge pull request #119701 from Stekke/sdcc
sdcc: 4.0.0 -> 4.1.0
2021-04-18 20:18:31 +01:00
github-actions[bot] 2095c2cd0d
Merge staging-next into staging 2021-04-18 12:06:03 +00:00
github-actions[bot] 9e804db1da
Merge master into staging-next 2021-04-18 12:06:01 +00:00
Daniël de Kok f75286e063 cudatoolkit-{9,9_0,9_1,9_2}: remove
Remove old CUDA toolkits (and corresponding CuDNN versions).

- Not supported by upstream anymore.
- We do not use them in nixpkgs.
- We do not test or actively maintain them.
- Anything but ancient GPUs is supported by newer toolkits.

Fixes #107131.
2021-04-18 11:55:10 +02:00
Bjørn Forsman c6df94ce56 sdcc: use nativeBuildInputs
Ref https://github.com/jtojnar/nixpkgs-hammering/blob/master/explanations/build-tools-in-build-inputs.md
2021-04-18 10:32:43 +02:00
Bjørn Forsman 73fdc55b4f sdcc: clarify license
Ref https://github.com/jtojnar/nixpkgs-hammering/blob/master/explanations/unclear-gpl.md
2021-04-18 10:32:43 +02:00
John Ericson 3af7e98470 llvmPackages_7.libcxxabi: Fix Darwin bootstrap
In 486e12ad68 cmake flags were added matching
later compilers use of libunwind for `useLLVM = true`. Unfortunately, `useLLVM`
on Darwin was not something tested before, and so the other compilers led us
astray: one of the new flags tried to make libunwind be used when it wasn't a
dep.

This is now fixed with more conditional code, but I hope things can perhaps be
made simpler with more insight into why libunwind is skipped. Perhaps it is
included in libSystem?

Finally, I moved the definition of `cmakeFlags` to match the order in the other
llvm versions.

CC @sternenseemann and @thefloweringash
2021-04-18 00:24:03 -04:00
github-actions[bot] da0e7f5fab
Merge staging-next into staging 2021-04-18 00:15:39 +00:00
github-actions[bot] 0ef3d3e462
Merge master into staging-next 2021-04-18 00:15:36 +00:00
John Ericson d4d49c1066
Merge pull request #119717 from sternenseemann/libunwind-7.1.0
Make cross stdenv with llvmPackages_7 and useLLVM work again
2021-04-17 19:59:19 -04:00
Austin Seipp e9254e10bc
Merge pull request #101423 from wamserma/ghdl-llvm
ghdl: fix llvm backend, add passthru.tests
2021-04-17 15:20:29 -05:00
github-actions[bot] 33182b194a
Merge staging-next into staging 2021-04-17 18:10:41 +00:00
github-actions[bot] 8156636ab9
Merge master into staging-next 2021-04-17 18:10:38 +00:00
sternenseemann 49ff6509a2 llvmPackages_7.clang: backport patch introducing --unwindlib flag
This flag was introduced for clang 9, but we use it in the `lldClang`
wrapper for `llvmPackages` 7, 8 and 9. For this purpose the patch was
backported for `llvmPackages_8.clang`, but not for `llvmPackages_7.clang`
which has been done in this commit.

`lldClang` is mostly used when cross compiling and
`stdenv.hostPlatform.useLLVM` is true. Most likely this problem wasn't
noticed since `useLLVM` with `llvmPackages_7` was broken for other
reasons as well and all cross targets (like `wasi32`) which have
`useLLVM` at the moment use `llvmPackages_8`.

With this change tests.cross.llvm.hello.{musl64, …} works again.
2021-04-17 18:08:04 +02:00
sternenseemann 55a476b00b llvmPackages_7.libcxx: make sure to use compiler-rt if useLLVM
This reflects what the other llvmPackages sets are doing.
2021-04-17 18:08:04 +02:00
sternenseemann 486e12ad68 llvmPackages_7.libcxxabi: take libunwind as an optional dependency again
This reverts commit 76b54c75b3 and brings
llvmPackages_7.libcxxabi in line with what the other llvmPackages
sets are doing again (with llvmPackages_7 being the sole outlier).

This also fixes an evaluation error of llvmPackages_7.libcxxabi if
stdenv.hostPlatform.useLLVM is true as the nonexistant libunwind
argument would be overridden.
2021-04-17 18:08:00 +02:00
sternenseemann be4eb91b3c llvmPackages_7.libunwind: init at 7.1.0 2021-04-17 18:07:12 +02:00
Pavol Rusnak 29bb19258a
treewide: use https for github URIs 2021-04-17 17:59:08 +02:00
Jörg Thalheim b2a1e04eed
Merge remote-tracking branch 'upstream/staging-next' into HEAD 2021-04-17 16:37:04 +02:00
Stijn DW 65bb97ee72 sdcc: 4.0.0 -> 4.1.0 2021-04-17 14:00:52 +02:00
Luke Granger-Brown 9aa8ae999a llvmPackages_12.llvm: fix building on older CPUs
This commit patches one of the llvm-exegesis tests to swap out whatever
CPU model happens to be on the build host for bdver2 (AMD Family
15h/Piledriver), which was picked because it looks like that was the
intent of the test author. This provides a more predictable compilation
behaviour when running on older (or possibly even newer!) machines.

One of the machines that is currently part of the NixOS Hydra build
farm, wendy, is using an old AMD Opteron CPU for which LLVM has no
scheduling machine model. This causes one of the tests for llvm-exegesis
to fail, because it segfaults trying to use the machine model to produce
useful analysis results.

Note that this particular test only runs on x86-64 build hosts anyway;
aarch64 isn't affected.

This deliberately only patches LLVM 12 to limit the rebuilds; other
LLVM versions are going through staging.
2021-04-17 01:55:53 +00:00
github-actions[bot] f620e30ca4
Merge master into staging-next 2021-04-17 00:15:03 +00:00
sternenseemann acdc783418 gcc*: always force --program-prefix and pass --target
Don't rely on gcc detecting from the passed platforms which prefix to
use, but always specify the prefix nixpkgs expects (or doesn't). This
allows us to work around problems where the configure script would add
prefix where nixpkgs doesn't expect one (if `--target` was specified,
but the same as `--host`) or doesn't add one if nixpkgs expects one (if
`--target` and `--host` are the same, but we are actually cross
compiling, but the relevant parts of the platform are not encoded into
the platform config.

See also ca9be0511b.
2021-04-16 22:54:05 +02:00
Maxine Aubrey 0f1e22421e go_1_16: 1.16.2 -> 1.16.3 2021-04-17 06:11:56 +10:00
Sandro f93a4f2add
Merge pull request #119456 from oxalica/bump/dotnet-sdk-5-0 2021-04-16 21:40:20 +02:00
JonathanILevi b623794aba
dmd: mark unbroken (#119647)
It is building fine locally, tested by myself and @SuperSandro2000 (who had added the broken tag).

Should this be tested on hydra before removing it?  I don't know if that is even possible.
2021-04-16 21:33:08 +02:00
Martin Weinelt cd7a519012
Merge branch 'master' into staging-next 2021-04-16 01:32:09 +02:00
Sandro 3783fb8475
Merge pull request #116826 from OPNA2608/update/libsidplayfp-2.1.1/21.05 2021-04-15 23:57:58 +02:00
Milan Pässler 893972affb jdk: update darwin to 16 as well 2021-04-15 23:12:11 +02:00
Milan Pässler 9dde9d8b9e jdk: 15.0.1-ga -> 16+36 2021-04-15 23:12:11 +02:00
github-actions[bot] dfd4f14303
Merge master into staging-next 2021-04-15 18:13:27 +00:00
Michael Weiss 28887e7fe5
llvmPackages_12: Improve and extend the meta attributes 2021-04-15 18:41:38 +02:00
Michael Weiss 2c2e8662b9
llvmPackages_12: 12.0.0-rc5 -> 12.0.0
Release notes: https://releases.llvm.org/12.0.0/docs/ReleaseNotes.html
2021-04-15 16:31:32 +02:00
Michael Weiss 978fa19ae2
Merge pull request #119528 from sternenseemann/llvmPackages_12-reorganize-files
llvmPackages_12: reorganize files
2021-04-15 16:25:17 +02:00
github-actions[bot] 9c190d28df
Merge master into staging-next 2021-04-15 12:06:13 +00:00
oxalica 1d2ea5bceb
roslyn: regenerate deps 2021-04-15 19:44:38 +08:00
oxalica bfe4151219
dotnetCorePackages.sdk_5_0: 5.0.200 -> 5.0.202
This fix NuGet issue https://github.com/NuGet/Home/issues/10491
2021-04-15 19:44:38 +08:00
sternenseemann 081b9423d4 llvmPackages*: fix paths to libcxx-0001-musl-hacks.patch
This patches are included from libcxx and libcxxabi when
stdenv.hostPlatform.isMusl. After #117433 the patchs to that patch
wasn't adjusted for the new structure, likely because it doesn't come up
during normal eval. This fixes (among other attribute paths):

* pkgsMusl.llvmPackages_12.libcxxabi
* pkgsMusl.llvmPackages_12.libcxx
* pkgsMusl.llvmPackages_11.libcxxabi
* pkgsMusl.llvmPackages_11.libcxx
* pkgsMusl.llvmPackages_10.libcxxabi
* pkgsMusl.llvmPackages_10.libcxx
* pkgsMusl.llvmPackages_9.libcxxabi
* pkgsMusl.llvmPackages_9.libcxx
* pkgsMusl.llvmPackages_8.libcxxabi
* pkgsMusl.llvmPackages_8.libcxx
* pkgsMusl.llvmPackages_7.libcxxabi
* pkgsMusl.llvmPackages_7.libcxx
* pkgsMusl.llvmPackages_6.libcxxabi
* pkgsMusl.llvmPackages_6.libcxx
* pkgsMusl.llvmPackages_5.libcxxabi
* pkgsMusl.llvmPackages_5.libcxx

Only evaluation was tested, not compilation though.
2021-04-15 13:24:04 +02:00
sternenseemann 781e69d19c llvmPackages_12: reorganize files
Restructure pkgs/development/compilers/llvm/12 in a similar spirit
as #117433 to mirror the other llvm directories.
2021-04-15 12:44:05 +02:00
Martin Weinelt 7cf67850c0
Merge branch 'master' into staging-next 2021-04-15 01:01:26 +02:00
Rien Maertens 78927e608f jetbrains.jdk: 11.0.10-b37 -> 11.0.10-b1427 2021-04-14 21:54:58 +02:00
OPNA2608 f6519a5191 dxa: add fallback download url 2021-04-14 07:45:10 +02:00
OPNA2608 2cedaac1cb xa: add fallback download url, fix substitution, enable tests 2021-04-14 07:45:10 +02:00
Tyson Whitehead 9f7fb75168
llvm_11: Correct path for TLI-musl patch 2021-04-14 00:29:29 -04:00
Luke Granger-Brown 08b22e605b Merge remote-tracking branch 'upstream/staging-next' into down-integrate-staging 2021-04-12 18:49:01 +00:00
Sandro 2be7176ab3
Merge pull request #107977 from corngood/msbuild 2021-04-12 20:09:16 +02:00
Martin Weinelt 28626eb553
Merge pull request #117996 from mweinelt/edk2
edk2: 202011 -> 202102
2021-04-12 13:52:17 +02:00
Tobias Mayer d09936ea84
gcc10: 10.2 -> 10.3 2021-04-12 12:22:31 +02:00
Roman Volosatovs 7f35119b94 go_2-dev: 2020-12-08 -> 2021-03-22 2021-04-12 18:48:50 +10:00
Sandro 36d6015eed
Merge pull request #116576 from wunderbrick/juniper 2021-04-12 02:26:00 +02:00
wunderbrick ddb3399c3a juniper: init at 2.3.0 2021-04-11 14:51:54 -04:00
R. RyanTM f549f4c86d ciao: 1.19.0 -> 1.20.0 2021-04-10 06:44:18 +00:00
Finn Behrens 30e6c07310 rustc: reenable aarch64-darwin for 1.51.0 2021-04-09 13:53:51 +02:00
github-actions[bot] c99b6f5343
Merge master into staging-next 2021-04-09 00:16:01 +00:00
tnias 01cf5e4d68
dtc: add yaml support and enable tests (#118700) 2021-04-09 02:02:36 +02:00
Edward Tjörnhammar af45b82a37
jetbrains.jdk: 11.0.7-b64 -> 11.0.10-b37 2021-04-09 00:47:31 +02:00
github-actions[bot] 85b57e4446
Merge master into staging-next 2021-04-08 18:14:17 +00:00
Michael Weiss 2b95bf44b8
llvmPackages_12: 12.0.0-rc4 -> 12.0.0-rc5
Note: Tested in #116646.
2021-04-08 16:12:48 +02:00
github-actions[bot] bf6abedefb
Merge master into staging-next 2021-04-08 12:06:16 +00:00
kraem 004584d3b6
go_1_15: 1.15.10 -> 1.15.11 2021-04-08 10:00:47 +02:00
github-actions[bot] 8d1d992273
Merge master into staging-next 2021-04-08 00:17:24 +00:00
Vincent Laporte e66af6a67e reason: 3.6.2 → 3.7.0 2021-04-07 20:34:26 +02:00
Jan Tojnar c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
Sandro be0b9616ca
Merge pull request #116671 from electrified/sjasmplus-1.18.2 2021-04-06 01:07:42 +02:00
Sandro 5d2f7bcfe2
Merge pull request #118418 from erictapen/ispc-1.15.0
ispc: 1.13.0 -> unstable-2021-04-02
2021-04-05 18:32:11 +02:00
Sandro Jäckel 3453b89f4b
lzma: deprecate alias 2021-04-04 19:49:52 +02:00
github-actions[bot] 3bf92ca4db
Merge master into staging-next 2021-04-03 18:18:51 +00:00
Justin Humm 92e64428d1 ispc: 1.13.0 -> unstable-2021-04-02 2021-04-03 19:44:36 +02:00
Frederik Rietdijk 94fa194b9f
Merge pull request #117593 from FRidh/python2alias
Python: be explicit on whether it is python2 or python3 that is used
2021-04-03 18:01:09 +02:00
Frederik Rietdijk 8527e634c3 intel-graphics-compiler: use python3 2021-04-03 17:06:10 +02:00
Austin Seipp 24ad481a61
bluespec: unstable-2021.02.14 -> 2021.03.29
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-04-03 09:58:05 -05:00
github-actions[bot] 74200a7126
Merge master into staging-next 2021-04-03 00:14:57 +00:00
Raphael Megzari 85b9527301
gleam: 0.14.3 -> 0.14.4 (#118120)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-02 21:13:02 +02:00
github-actions[bot] b3a0328b7f
Merge master into staging-next 2021-04-02 18:14:54 +00:00
Michael Weiss a960fead6e
llvmPackages_12: 12.0.0-rc3 -> 12.0.0-rc4 2021-04-02 14:35:23 +02:00
oxalica 354d262db8
lib.meta: introduce availableOn 2021-04-02 19:20:23 +08:00
Arthur Gautier 6f73a8570c rust: 1.50.0 -> 1.51.0
Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
2021-04-02 06:03:40 +10:00
github-actions[bot] 78b864aeee
Merge staging-next into staging 2021-04-01 18:15:42 +00:00
Michael Weiss cc12a82cf2
llvmPackages_12: Fix libunwind, openmp, libcxx, and libcxxabi
All builds succeed now: nix-build -A llvmPackages_12
2021-04-01 20:08:20 +02:00
Daniel Nagy b5d78dbc52
ecl: add changelog 2021-04-01 17:59:49 +02:00
github-actions[bot] 85e9b4acf4
Merge staging-next into staging 2021-04-01 12:06:32 +00:00
Sandro 356e52c844
Merge pull request #117116 from kolaente/update/flutter 2021-04-01 13:48:07 +02:00
Michael Weiss 493131d70b
llvmPackages: Add an update script
This is based on a combination of Gabor Greif's update script [0] and my
script to verify the hashes [1]. It's a bit hacky / unconventional but
it should be very useful and worked fine so far (but it might require
changes for some edge-cases).

[0]: https://github.com/NixOS/nixpkgs/issues/100725#issuecomment-710055349
[1]: https://github.com/NixOS/nixpkgs/issues/100725#issuecomment-781323979
2021-04-01 13:31:48 +02:00
Gabor Greif 7c27d49815
llvmPackages_12: init at 12.0.0-rc3
https://lists.llvm.org/pipermail/release-testers/2021-March/001496.html
2021-04-01 12:32:19 +02:00
Michael Weiss 2fd9e41719
llvmPackages_12: Copy from llvmPackages_11 2021-04-01 12:32:18 +02:00
github-actions[bot] ebc5b12a40
Merge staging-next into staging 2021-04-01 06:05:50 +00:00
Peter Hoeg 34b5e46f73 mint: 0.9.0 -> 0.11.0 2021-04-01 11:12:47 +08:00
Peter Hoeg befefe6f3f crystal: init at 1.0.0 2021-04-01 11:12:47 +08:00
github-actions[bot] b152812791
Merge staging-next into staging 2021-04-01 00:15:44 +00:00
Pavol Rusnak cfe4e1c3db
yosys: 0.9+3962 -> 0.9+4052 2021-03-31 23:11:34 +02:00
github-actions[bot] d466353dd5
Merge staging-next into staging 2021-03-30 12:06:28 +00:00
github-actions[bot] c9e9ff786b
Merge master into staging-next 2021-03-30 12:06:24 +00:00
Ben Siraphob 11027de7ae koka: init at 2.1.1 2021-03-30 12:28:57 +02:00
Martin Weinelt c8ac1ce19e
edk2: 202011 -> 202102
Fixes: CVE-2021-28210, CVE-2021-28211
2021-03-30 02:20:31 +02:00
github-actions[bot] 884cf463fd
Merge staging-next into staging 2021-03-29 12:06:29 +00:00
github-actions[bot] b1788736fd
Merge master into staging-next 2021-03-29 12:06:25 +00:00
Peter Hoeg 3f358d4574 crystal2nix: 0.1.0 -> 0.1.1 2021-03-29 18:12:25 +08:00
github-actions[bot] f311dede4c
Merge staging-next into staging 2021-03-29 00:15:53 +00:00
github-actions[bot] b9456ca263
Merge master into staging-next 2021-03-28 18:14:11 +00:00
Michael Raskin b722e3ff4c
Merge pull request #117892 from 7c6f434c/quicklisp-updates
quicklispPackages: update, sbcl: 2.0.8 -> 2.1.2, and related stuff
2021-03-28 17:01:57 +00:00
Michael Raskin b4d085cb9a sbcl: init 2.1.2, default 2.0.8 -> 2.1.2 2021-03-28 16:41:53 +02:00
github-actions[bot] cbd2c726fb
Merge staging-next into staging 2021-03-28 12:06:24 +00:00
github-actions[bot] 25268aeaf7
Merge master into staging-next 2021-03-28 12:06:21 +00:00
Ben Siraphob 6a2a2d6503 julia: use system blas only when not darwin 2021-03-28 17:46:05 +07:00
github-actions[bot] 2ed7687b19
Merge staging-next into staging 2021-03-28 00:15:43 +00:00
github-actions[bot] 732dc6ef8f
Merge master into staging-next 2021-03-28 00:15:41 +00:00
sternenseemann a3f74559cf llvmPackages_6.llvm-manpages: unbreak
enableSharedLibraries defaulted to true which caused a phase to
try to use the $lib output which doesn't exist for the llvm-manpages
derivation.
2021-03-27 22:40:44 +01:00
John Ericson 8179fdc3d1
Merge pull request #117660 from Ericson2314/organize-llvm
llvmPackages_*.libunwind: Move into own directory
2021-03-26 10:25:23 -04:00
github-actions[bot] 219312a10b
Merge staging-next into staging 2021-03-26 12:06:44 +00:00
github-actions[bot] eddd1a74ec
Merge master into staging-next 2021-03-26 12:06:41 +00:00
Michael Raskin 36f2c10ca5
Merge pull request #117240 from eraserhd/fix-gambit-compiler-paths
gambit: fix compiler paths
2021-03-26 12:04:04 +00:00
Emery Hemingway 56592ea293 nim: cross-compilation fixes
* Import with callPackages
* Use buildPackages for building a cross-compiler
* Patch-out potential conflicts in nim.cfg
* Generate a configuration with toolchain detection
* Build with strictDeps enabled
2021-03-26 11:36:38 +01:00
Jan Tojnar b3c854b60b
Merge branch 'staging-next' into staging 2021-03-26 07:53:44 +01:00
github-actions[bot] 26fdaef6b2
Merge master into staging-next 2021-03-26 06:05:54 +00:00
John Ericson 0ae1182489 llvmPackages_*.libunwind: Move into own directory
I expect to soon give it some patches that would go in there too, but
either way it's good to match the others.
2021-03-26 05:06:15 +00:00
taku0 44ccf965bd
Merge pull request #116781 from cust0dian/adoptopenjdk-16
adoptopenjdk-bin: add 16.0.0
2021-03-26 10:34:23 +09:00
github-actions[bot] b068d2e437
Merge master into staging-next 2021-03-26 00:15:53 +00:00
sternenseemann 91b91ebe40 haxe*: set licenses according to upstream opam file
Upstream specifies MIT and GPL2+ in its opam file, so we run with this.
There doesn't seem to have been any license change and I couldn't track
down the mentioned docs/license.txt.
2021-03-25 22:11:00 +01:00
sternenseemann f8544f96f1 neko: try to list applying licenses more accurately
As a side note: This change shows why `with` can be dangerous business:
It doesn't shadow any existing bindings which can be unexpected. If I
were to use with licenses; [ … ] here, zlib in the with block would
actually be the zlib passed via the function arguments instead of the
zlib from licenses which would be expected. This was what caused the
previous eval error.
2021-03-25 22:11:00 +01:00
sternenseemann 2fd41fd203 haxe: 3.4.6 -> 4.2.1
haxe_4_2: init at 4.2.1

haxe_3_4, haxe_3_2 still exist.

Co-authored-by: Daniel Firth <dan.firth@homotopic.tech>
2021-03-25 22:11:00 +01:00
Daniel Firth dc376c7e75 neko: 2.2.0 -> 2.3.0
Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
2021-03-25 22:11:00 +01:00
David McFarland 0745ed2b73 roslyn: init at 3.10.0-1.21102.26 2021-03-25 16:11:58 -03:00
github-actions[bot] 7c9222212f
Merge master into staging-next 2021-03-25 18:14:01 +00:00
David McFarland 2026cd2781 dotnetCorePackages.sdk_5_0: 5.0.100 -> 5.0.200 2021-03-25 14:21:08 -03:00
Frederik Rietdijk 350f9bd822
Merge pull request #117570 from FRidh/python2alias
Python: be explicit on whether it is python2 or python3 that is used
2021-03-25 13:26:35 +01:00
github-actions[bot] 4dc869e403
Merge master into staging-next 2021-03-25 12:06:22 +00:00
Frederik Rietdijk 7012ab1b54 dtc: don't require python 2021-03-25 12:30:44 +01:00
Frederik Rietdijk 7be6cf9784 cmdstan: use python3 2021-03-25 11:48:24 +01:00
Samuel Ainsworth a4456496ee
julia: add update script, and 1.5.3 -> 1.5.4 (#116466) 2021-03-25 11:32:14 +01:00
John Ericson f10f4f7ec3
Merge pull request #117433 from obsidiansystems/organize-llvm
llvmPackages: Organize files
2021-03-24 17:41:06 -04:00
Daniël de Kok 84023d85cb llvmPackages_rocm: 4.0.1 -> 4.1.0 2021-03-24 08:43:58 +01:00
John Ericson 19a974945b llvmPackages: Organize files
Always do pkg/default.nix not pkg.nix; use directories to avoid
prefixing patches and other files.
2021-03-24 05:02:50 +00:00
kolaente ba619289b6
flutter: remove patchelf 2021-03-23 21:00:23 +01:00
kolaente e5e446bdc0
flutter: add inherit version 2021-03-23 20:51:58 +01:00
github-actions[bot] 3fe8f858ef
Merge staging-next into staging 2021-03-23 18:20:04 +00:00
github-actions[bot] ca7fa2ef7b
Merge master into staging-next 2021-03-23 18:20:01 +00:00
Marek Fajkus 09ea1dc766
elmPackages.elm-format: fix build
closes #117336
2021-03-23 11:47:29 +01:00
github-actions[bot] 8ef8f6b43c
Merge staging-next into staging 2021-03-23 06:18:05 +00:00
github-actions[bot] 39e3812215
Merge master into staging-next 2021-03-23 06:18:02 +00:00
Ryan Mulligan 196342526d
Merge pull request #117185 from r-ryantm/auto-update/gleam
gleam: 0.14.2 -> 0.14.3
2021-03-22 21:08:59 -07:00
github-actions[bot] 13fa16d91b
Merge staging-next into staging 2021-03-23 00:40:28 +00:00
github-actions[bot] 11ee0bf5d7
Merge master into staging-next 2021-03-23 00:40:24 +00:00
Sandro e43d6186ff
Merge pull request #114526 from bobrik/ivan/ocaml-4.10.2
ocamlPackages.ocaml: 4.10.0 -> 4.10.2
2021-03-22 21:31:23 +01:00
Jason Felice 3ed996727f gambit: fix compiler paths
Prior to the recent merge, the full paths were specified here, so
gambit would get the full paths and not need to propagate the compiler
inputs.
2021-03-22 10:58:48 -04:00
github-actions[bot] feda7be375
Merge master into staging-next 2021-03-22 12:26:55 +00:00
Ben Siraphob 5b8a0c92fe openjdk/darwin: move version out of name 2021-03-22 18:53:04 +07:00
R. RyanTM 8a55c90c16 gleam: 0.14.2 -> 0.14.3 2021-03-22 08:28:39 +00:00
Ben Siraphob 1a12ffa3b3 urn: all platforms 2021-03-22 15:05:16 +07:00
Markus S. Wamser 123ec34638 ghdl: fix llvm backend, add passthru.tests 2021-03-22 07:51:27 +01:00
github-actions[bot] 226884645e
Merge master into staging-next 2021-03-22 00:45:52 +00:00
Sandro 99f6fd4365
Merge pull request #86200 from jamesottaway/patch-1
dotnetCorePackages: Fix `combinePackages` example
2021-03-22 00:20:44 +01:00
Serg Nesterov 05a48020fd
adoptopenjdk: add 16.0.0 2021-03-22 01:18:50 +03:00
Sandro 53f66b0837
Merge pull request #111161 from r-ryantm/auto-update/corral
pony-corral: 0.4.0 -> 0.4.1
2021-03-21 21:18:17 +01:00
github-actions[bot] 2379dca8ce
Merge master into staging-next 2021-03-21 18:25:45 +00:00
Antonio Nuno Monteiro 7a0533d438 bs-platform: remove myself from maintainers 2021-03-21 11:21:10 -07:00
John Ericson e6ca7b6e5b
Merge pull request #113747 from r-burns/nixpkgs-gcc-decfloat
gcc: don't disable decimal-float when cross-compiling
2021-03-21 13:27:43 -04:00
kolaente 3be901912d
flutter 1.22.4 -> 2.0.3 2021-03-21 14:06:57 +01:00
github-actions[bot] 6f6e1d46b4
Merge master into staging-next 2021-03-21 12:26:00 +00:00
taku0 aaa9453327
Merge pull request #116935 from hercules-ci/unsupported-jdks
adoptopenjdk-bin: mark insecure 13 and 14
2021-03-21 16:45:47 +09:00
github-actions[bot] 1620a4d1e1
Merge staging-next into staging 2021-03-20 00:40:14 +00:00
John Ericson 097933d70b
Merge pull request #116833 from thefloweringash/compiler-rt-arch
llvmPackages_{10,11}.compiler-rt: restrict build to current arch
2021-03-19 17:49:49 -04:00
Peter Simons a839c811a5
Merge pull request #116096 from NixOS/haskell-updates
Update Haskell package set to Stackage Nightly 2021-03-17 (plus other fixes)
2021-03-19 21:24:10 +01:00
Andrew Childs 2a588dad4e llvmPackages_{10,11}.compiler-rt: restrict build to current arch
Workaround for build failure after adding mandatory -arch
argument. Nixpkgs targets a single architecture, so this saves a small
amount of wasted build effort.

See https://github.com/NixOS/nixpkgs/pull/114817#issuecomment-802709527
2021-03-19 20:23:24 +00:00
Andrew Childs 8cc0010f0c llvmPackages_*.compiler-rt: use darwinArch 2021-03-19 20:23:23 +00:00
Ivan Babrou 2cf3641a5c rustc: update llvm on darwin to current
We downgraded when LLVM 10 wasn't working well on Darwin: #101136.
Now that we're using LLVM 11, the issue is no longer present.
2021-03-20 06:12:48 +10:00
github-actions[bot] 6e3a55e059
Merge staging-next into staging 2021-03-19 18:19:40 +00:00
Frederik Rietdijk 1ecb97eae9 Merge master into staging-next 2021-03-19 18:17:01 +01:00
Robert Hensing 641aa9e27d adoptopenjdk-{13,14}: mark insecure 2021-03-19 16:37:16 +01:00
Sandro d00e4cd1fe
Merge pull request #115381 from rskew/master 2021-03-19 14:00:01 +01:00
github-actions[bot] 8c03075f07
Merge staging-next into staging 2021-03-19 00:41:08 +00:00
ed e82f32bfd8 sjasmplus: init at 1.18.2 2021-03-18 18:33:35 +00:00
Jan Tojnar 2445e9a681
Merge branch 'master' into staging-next 2021-03-18 19:24:39 +01:00
Thomas Mader 7e05c58069
dmd: 2.091.1 -> 2.095.1 2021-03-18 17:41:31 +02:00
Thomas Mader 8048be48a9
ldc: 1.24.0 -> 1.25.1 2021-03-18 17:29:49 +02:00
Sandro 779428586c
Merge pull request #116535 from SuperSandro2000/fix-collection27 2021-03-18 13:43:53 +01:00
Jan Tojnar 0136206b12
Merge branch 'master' into staging-next 2021-03-18 13:35:59 +01:00
Ben Wolsieffer 8178d877ac go: fix bootstrapping on 32-bit ARM
On 32-bit ARM, the wrong name was used for the prebuilt bootstrap tarball,
causing an eval failure.
2021-03-18 18:59:34 +10:00
AndersonTorres 9b611eb998 dxa: move file argument in substituteInPlace 2021-03-17 20:59:19 -03:00
AndersonTorres 6603130e7e xa: fix a typo in substituteInPlace
Also, move the file argument
2021-03-17 20:59:19 -03:00
Sandro Jäckel 88513c0d88
dmd: mark broken
failing on hydra since 7 months https://hydra.nixos.org/build/133752088
2021-03-17 22:55:10 +01:00
Sandro Jäckel 2ab8b31520
crystal_32_0: mark broken on darwin 2021-03-17 22:55:08 +01:00
Sandro d600f00664
Merge pull request #116632 from ErinvanderVeen/clean 2021-03-17 22:13:27 +01:00
Peter Simons 1fab990d47 Merge origin/master into haskell-updates. 2021-03-17 21:19:22 +01:00
Erin van der Veen 2e698f6ba7 clean: change to bsd2 license
Clean is released under the bsd2 license as can be seen here:
https://clean.cs.ru.nl/Download_Clean

For the full license, see:
https://ftp.cs.ru.nl/Clean/Clean30/CleanLicenseConditions.txt
2021-03-17 15:07:48 +01:00
Samuel Gräfenstein b72ee5775c
treewide: gnome2.gtk -> gtk2
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:16 +01:00
Rowan Skewes 09eca0013a swiProlog: fix and document pack install
Add pack install location to swipl pack path
Document using local pack install
2021-03-16 17:25:38 +11:00
github-actions[bot] 1398d44bac
Merge staging-next into staging 2021-03-16 00:39:16 +00:00
github-actions[bot] d18aaddde4
Merge master into staging-next 2021-03-16 00:39:08 +00:00
Anderson Torres 8989d8f457
Merge pull request #116137 from AndersonTorres/new-xa
XA assembler
2021-03-15 18:50:42 -03:00
github-actions[bot] 611019db38
Merge staging-next into staging 2021-03-15 18:16:53 +00:00
github-actions[bot] 4915d2cb4c
Merge master into staging-next 2021-03-15 18:16:46 +00:00
Domen Kožar 132be9e4b7
Merge pull request #113018 from andys8/update-elm-packages-20210213
elmPackages.elm-{language-server,tooling,review}: Update versions
2021-03-15 14:15:13 +00:00
github-actions[bot] 01ebd9a303
Merge staging-next into staging 2021-03-15 00:40:33 +00:00
github-actions[bot] 8fa4dca9b5
Merge master into staging-next 2021-03-15 00:40:27 +00:00
Jonathan Ringer cbce4e76d3 solc: make linux only
Darwin build is already failing.
Don't have hardware iterate
2021-03-14 17:06:47 -07:00
Jonathan Ringer 6a36b730ae solc: 0.7.4 -> 0.8.2 2021-03-14 17:06:47 -07:00