Commit Graph

15487 Commits

Author SHA1 Message Date
github-actions[bot]
35885ddb23
Merge master into haskell-updates 2023-06-10 00:12:39 +00:00
github-actions[bot]
f85baf313e
Merge staging-next into staging 2023-06-10 00:03:09 +00:00
Tom Westerhout
b6088ea2f3
Enable tests for Halide; replace llvmPackages.stdenv with stdenv (#224473)
* Enable tests for Halide; replace llvmPackages.stdenv with stdenv

* halide: disable performance_memcpy test

* halide: disable all performance tests because they are unreliable
2023-06-09 22:17:44 +02:00
R. Ryantm
aa3a5b91e3 p4c: 1.2.3.9 -> 1.2.4.0 2023-06-09 12:26:21 +00:00
github-actions[bot]
e062b84a95
Merge staging-next into staging 2023-06-09 06:01:52 +00:00
Nick Cao
729058d86a
Merge pull request #236649 from NickCao/julia
julia_19: 1.9.0 -> 1.9.1
2023-06-08 21:07:19 -06:00
Nick Cao
17544a363a
Merge pull request #236653 from wegank/julia-bin-bump
julia_19-bin: 1.9.0 -> 1.9.1
2023-06-08 21:03:23 -06:00
github-actions[bot]
b33d17dfd9
Merge staging-next into staging 2023-06-09 00:03:07 +00:00
sternenseemann
cb7ccdccd7 Merge remote-tracking branch 'origin/master' into haskell-updates 2023-06-08 20:16:04 +02:00
Rebecca Turner
17d63282b2 haskell.compiler: allow overriding source with hadrian
Hadrian (the GHC build tool) is built separately from GHC. This means
that if `haskell.compiler.ghc961` is overridden to add patches, those
patches will _only_ be applied to the GHC portion of the build, and not
the Hadrian build. For example, backporting this patch to GHC 9.6.1
failed because the changes to `hadrian/` files were not reflected in the
Nix build:

5ed77deb1b

By lifting `src` and `hadrian` from variables defined in the function
body to parameters with default values, the `hadrian/` files can be
overridden using the `haskell.compiler.ghc961.override` function. For
example:

   self.haskell.compiler.ghc961.override {
     # The GHC 9.6 builder in nixpkgs first builds hadrian with the
     # source tree provided here and then uses the built hadrian to
     # build the rest of GHC. We need to make sure our patches get
     # included in this `src`, then, rather than modifying the tree in
     # the `patchPhase` or `postPatch` of the outer builder.
     src = self.applyPatches {
       src = let
         version = "9.6.1";
       in
         self.fetchurl {
           url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz";
           sha256 = "fe5ac909cb8bb087e235de97fa63aff47a8ae650efaa37a2140f4780e21f34cb";
         };

       patches = [
         # Enable response files for linker if supported
         (self.fetchpatch {
           url = "5ed77deb1b.patch";
           hash = "sha256-dvenK+EPTZJYXnyfKPdkvLp+zeUmsY9YrWpcGCzYStM=";
         })
       ];
     };
   }

Note that we do have to re-declare the `src` we want, but I'm not sure
of a good way to avoid this while also sharing one set of patches
between the GHC and Hadrian builds.
2023-06-08 20:11:52 +02:00
github-actions[bot]
52cf9e3e3b
Merge staging-next into staging 2023-06-08 18:02:03 +00:00
sternenseemann
f1ad505272 haskell.compiler.ghc961: remove at 9.6.1 2023-06-08 18:18:11 +02:00
sternenseemann
271e7a9d82 haskell.compiler.ghcHEAD: 9.7.20230505 -> 9.7.20230527 2023-06-08 18:17:07 +02:00
teh
88e640fd68
jsonnet: Build with cmake (#236510)
The current build doesn't install all necessary libraries to
use jsonnet from c/c++
2023-06-08 12:09:56 -04:00
Pol Dellaiera
609733b94b
Merge pull request #235282 from ereslibre/bump-unison-M4i
unison: M4h -> M4i
2023-06-08 18:02:15 +02:00
Psentee
344daa4cb8 yosys: 0.29 -> 0.30 2023-06-08 18:22:13 +03:00
figsoda
c184a80efa
Merge pull request #236563 from figsoda/erg 2023-06-08 10:56:27 -04:00
Artturi
69b154f738
Merge pull request #234204 from vcunat/p/gcc-nofetch-patch 2023-06-08 17:53:58 +03:00
Weijia Wang
6ea0aa6814 julia_19-bin: 1.9.0 -> 1.9.1 2023-06-08 16:36:27 +03:00
github-actions[bot]
2259be2076
Merge staging-next into staging 2023-06-08 12:02:05 +00:00
Nick Cao
d4886a0689
julia_19: 1.9.0 -> 1.9.1
Diff: https://github.com/JuliaLang/julia/compare/v1.9.0...v1.9.1
2023-06-08 19:56:32 +08:00
Pascal Bach
4114a9167a
Merge pull request #216888 from lucperkins/add-assemblyscript
assemblyscript: init at 0.27.5
2023-06-08 08:12:43 +02:00
figsoda
207180add1 erg: init at 0.6.13
https://github.com/erg-lang/erg
2023-06-07 23:02:44 -04:00
Luc Perkins
4dde8d3832
assemblyscript: init at 0.27.5
Fix
2023-06-07 19:20:10 -07:00
github-actions[bot]
83e7490bd0
Merge staging-next into staging 2023-06-08 00:03:05 +00:00
figsoda
bb00010470
Merge pull request #236447 from RaitoBezarius/cairo-lang-compiler
cairo-lang: init at 1.1.0
2023-06-07 16:11:38 -04:00
github-actions[bot]
45c3df25d7
Merge staging-next into staging 2023-06-07 18:01:50 +00:00
Pol Dellaiera
0837dc6b77
Merge pull request #236358 from qowoz/go119
go_1_19: 1.19.9 -> 1.19.10
2023-06-07 19:46:52 +02:00
Pol Dellaiera
428c26aba3
Merge pull request #236359 from qowoz/go120
go_1_20: 1.20.4 -> 1.20.5
2023-06-07 19:46:31 +02:00
Francesco Gazzetta
9e7eb18ad8
Merge pull request #236420 from fgaz/rustc-llvm16
rustc: use llvm_16
2023-06-07 19:31:56 +02:00
Raito Bezarius
2ef54182a3 cairo-lang: init at 1.1.0
`cairo-lang` is a general purpose language for provable computations using
PCP (probabilistically checkable proofs — https://en.wikipedia.org/wiki/Probabilistically_checkable_proof)

This is the v1 Rust-based compiler version of the project.
2023-06-07 16:37:23 +02:00
github-actions[bot]
4715513f7b
Merge staging-next into staging 2023-06-07 12:01:38 +00:00
Vincent Laporte
381e92a35e jasmin-compiler: 2022.09.2 → 2022.09.3 2023-06-07 12:59:19 +02:00
Francesco Gazzetta
131808261a rustc: use llvm_16
https://github.com/rust-lang/rust/releases/tag/1.70.0 (Internal Changes)
https://github.com/rust-lang/rust/pull/109474/
2023-06-07 11:06:13 +02:00
github-actions[bot]
03925ecb5f
Merge staging-next into staging 2023-06-07 06:01:45 +00:00
Nick Cao
c123fb09be
Merge pull request #236130 from figsoda/verify-cargo-deps
treewide: unset verifyCargoDeps
2023-06-06 20:27:48 -06:00
zowoq
deb3d80ae0 go_1_20: 1.20.4 -> 1.20.5
Changelog: https://go.dev/doc/devel/release#go1.20
2023-06-07 07:04:54 +10:00
zowoq
1887a08e2a go_1_19: 1.19.9 -> 1.19.10
Changelog: https://go.dev/doc/devel/release#go1.19
2023-06-07 07:02:42 +10:00
github-actions[bot]
71a0dc0490
Merge staging-next into staging 2023-06-06 18:01:51 +00:00
figsoda
0152258d4e
Merge pull request #235966 from figsoda/bfc 2023-06-06 09:55:52 -04:00
github-actions[bot]
6162feee0f
Merge staging-next into staging 2023-06-06 12:02:04 +00:00
Weijia Wang
8498c52943
Merge pull request #236152 from wegank/mozart2-boost
mozart2: unpin boost169
2023-06-06 10:55:42 +03:00
Sergei Trofimovich
aaf4f4acca
Merge pull request #234887 from trofi/mingw-w64-gcc-13-fix
gcc13: drop already upstreamed mingwW64 patch
2023-06-06 08:05:23 +01:00
github-actions[bot]
9634f361e8
Merge staging-next into staging 2023-06-06 00:02:59 +00:00
Samuel Ainsworth
8ae7e58981
Merge pull request #235982 from breakds/PR/breakds/cuda_nvrtc_fix
cudaPackages.cudatoolkit: mark libnvrtc-builtins needed for libnvrtc
2023-06-05 15:03:56 -07:00
Weijia Wang
fc11013c20 mozart2: unpin boost169 2023-06-06 00:11:19 +03:00
figsoda
5f0f7b822b elmPackages.elm-test-rs: unset verifyCargoDeps 2023-06-05 14:32:09 -04:00
github-actions[bot]
23f7318bde
Merge staging-next into staging 2023-06-05 18:02:10 +00:00
Break Yang
9b804b8941 cudaPackages.cudatoolkit: mark libnvrtc-builtins needed for libnvrtc
libnvrtc dlopens libnvrtc-builtins without listing it in DT_NEEDED, thus it was being stripped out from the runpath
2023-06-05 09:20:46 -07:00
Weijia Wang
88d35c95ca
Merge pull request #193253 from r-ryantm/auto-update/vyper
vyper: 0.3.8 -> 0.3.9
2023-06-05 17:08:14 +03:00
github-actions[bot]
dd60d8ee46
Merge staging-next into staging 2023-06-05 12:01:45 +00:00
Vladimír Čunát
ba9cb93813
Revert "emscripten: 3.1.24 -> 3.1.39" (part of PR #229718)
This reverts commit 39d2924769.
Now it will at least fetch sources FIXME correctly and build on *-linux.
2023-06-05 13:47:22 +02:00
Vladimír Čunát
fe6850b67c
Revert "binaryen: 112 -> 113" (part of PR #229718)
This reverts commit 8392a8baa9.
It's needed for emscripten revert; see the next commit.
2023-06-05 13:47:22 +02:00
Vladimír Čunát
7789efcfd3
Revert "Merge #235219: llvmPackages_16: 16.0.1 -> 16.0.5"
This reverts commit c8d485b29b, reversing
changes made to 4a640f8bb6.

llvm_16 won't even apply patches successfully, so backing out for now.
2023-06-05 06:30:56 +02:00
Vladimír Čunát
c8d485b29b
Merge #235219: llvmPackages_16: 16.0.1 -> 16.0.5
...into staging-next
2023-06-05 06:12:26 +02:00
github-actions[bot]
b2f58f98dd
Merge staging-next into staging 2023-06-05 00:03:13 +00:00
github-actions[bot]
4a640f8bb6
Merge master into staging-next 2023-06-05 00:02:32 +00:00
figsoda
c747474697 bfc: mark as broken on aarch64-linux 2023-06-04 16:23:11 -04:00
Anderson Torres
8ba006e057 pforth: 1.28.0 -> 2.0.1 2023-06-04 20:10:35 +00:00
figsoda
cfb9c8858e
Merge pull request #235438 from figsoda/rustc 2023-06-04 15:06:24 -04:00
R. Ryantm
5d126b145a vyper: 0.3.8 -> 0.3.9 2023-06-04 00:11:50 +00:00
Vladimír Čunát
e74dab4d35
Merge #235210: dtc: fix build issues in Darwin
...into staging-next
2023-06-03 14:58:43 +02:00
github-actions[bot]
4b2e2c8b39
Merge master into staging-next 2023-06-03 00:02:20 +00:00
figsoda
462f4a45aa
Merge pull request #235283 from figsoda/bfc 2023-06-02 17:52:04 -04:00
Will Cohen
2a5125b4f7 llvmPackages_16: 16.0.1 -> 16.0.5 2023-06-02 12:20:16 -04:00
github-actions[bot]
c8021f68a8
Merge master into staging-next 2023-06-02 12:01:23 +00:00
Randy Eckenrode
85a7771af6 llvmPackages_16.compiler-rt: fix missing builtins
Based on c96a05a293 but for LLVM 16.
2023-06-02 08:35:43 +00:00
github-actions[bot]
8b93c4f667
Merge staging-next into staging 2023-06-02 00:03:07 +00:00
Maciej Krüger
271984bef4
Merge pull request #231675 from FlafyDev/wrapped-flutter-artifacts
flutter: Move artifact installation logic to the wrapper
2023-06-02 00:11:08 +02:00
figsoda
ff16966860 rustc: 1.69.0 -> 1.70.0
https://github.com/rust-lang/rust/releases/tag/1.70.0
2023-06-01 15:00:58 -04:00
Otavio Salvador
54216d1f5a dtc: remove postFixup as meson installs the dylib properly
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-06-01 12:15:47 -03:00
Otavio Salvador
219b397071 dtc: avoid building tests in case doCheck is disabled
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-06-01 10:34:22 -03:00
Otavio Salvador
31b198ad6f dtc: fix linker options so it also works in Darwin
We dropped two simple patches which were changing the version in
meson.build as the "dtc: Fix linker options so it also works in Darwin"
is bigger.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-06-01 10:34:08 -03:00
R. Ryantm
ba15f99e56 inform6: 6.41-r4 -> 6.41-r5 2023-06-01 11:33:16 +00:00
figsoda
9cbd521c3d bfc: init at unstable-2023-02-02
https://github.com/Wilfred/bfc
https://bfc.wilfred.me.uk
2023-05-31 18:25:16 -04:00
Rafael Fernández López
0fa17e3f9a
unison: M4h -> M4i 2023-06-01 00:20:20 +02:00
github-actions[bot]
323e9a44c2
Merge staging-next into staging 2023-05-31 12:01:43 +00:00
Ellie Hermaszewska
9411636748
Merge pull request #234925 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
2023-05-31 15:00:01 +08:00
github-actions[bot]
e4cefde08a
Merge master into haskell-updates 2023-05-31 00:13:18 +00:00
ners
a83735c6a2 haskell.compiler.ghc962: init at 9.6.2
https://www.haskell.org/ghc/blog/20230523-ghc-9.6.2-released.html
2023-05-30 13:35:14 +02:00
Sergei Trofimovich
899eccf612 llvm_{10..13}: backport gcc-13 fixes
Without the change `llvm` build fails on `gcc-13` fails as:

    [  0%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/Signals.cpp.o
    In file included from llvm/lib/Support/Signals.cpp:14:
    llvm/include/llvm/Support/Signals.h:119:8: error: variable or field 'CleanupOnSignal' declared void
      119 |   void CleanupOnSignal(uintptr_t Context);
          |        ^~~~~~~~~~~~~~~
2023-05-30 09:00:54 +01:00
github-actions[bot]
36927e8629
Merge staging-next into staging 2023-05-30 06:01:32 +00:00
github-actions[bot]
2cc7256a10
Merge master into staging-next 2023-05-30 06:01:03 +00:00
Dennis Gosnell
d746b4e460
Merge pull request #232914 from NixOS/haskell-updates
haskellPackages: update stackage and hackage, ghc: 9.2.7 -> 9.2.8
2023-05-30 12:53:37 +09:00
Weijia Wang
9362b60a80
Merge pull request #234901 from figsoda/flags
treewide: convert *Flags to a list
2023-05-30 06:12:27 +03:00
figsoda
f7f0512311 swiftPackages.swift-docc: convert swiftFlags to a list 2023-05-29 20:16:22 -04:00
figsoda
34233107b9 swift-format: convert swiftpmFlags to a list 2023-05-29 20:15:20 -04:00
github-actions[bot]
4e4cf85c95
Merge master into haskell-updates 2023-05-30 00:13:33 +00:00
github-actions[bot]
1df97aede2
Merge staging-next into staging 2023-05-30 00:02:56 +00:00
github-actions[bot]
ceb7ed5e38
Merge master into staging-next 2023-05-30 00:02:21 +00:00
figsoda
c05fa24286 sourcekit-lsp: move pkg-config to nativeBuildInputs 2023-05-29 19:52:22 -04:00
figsoda
8733c5536e swiftpm: move pkg-config to nativeBuildInputs 2023-05-29 19:51:01 -04:00
Sergei Trofimovich
9de90335f9 gcc13: drop already upstreamed mingwW64 patch
Without the change the patch failed to apply as:

```
$ nix build -f. pkgsCross.mingwW64.stdenv.cc.cc
...
x86_64-w64-mingw32-stage-final-gcc> applying patch /nix/store/sb9irfs83qvdgkf23agvv1vn96n9z31p-Added-mcf-thread-model-support-from-mcfgthread.patch
x86_64-w64-mingw32-stage-final-gcc> patching file config/gthr.m4
x86_64-w64-mingw32-stage-final-gcc> Reversed (or previously applied) patch detected!  Assume -R? [n]
x86_64-w64-mingw32-stage-final-gcc> Apply anyway? [n]
x86_64-w64-mingw32-stage-final-gcc> Skipping patch.
...
```

The patch is apready present in gcc-13.1.0.
2023-05-29 22:40:07 +01:00
Otavio Salvador
280160bd1d dtc: 1.6.1 -> 1.7.0
The package now uses Meson and Ninja as the build system.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-05-29 19:03:57 +00:00
github-actions[bot]
a0de937efb
Merge staging-next into staging 2023-05-29 12:02:05 +00:00
Sergei Trofimovich
e1356f9958
Merge pull request #232075 from trofi/gcc12-update
gcc12: 12.2.0 -> 12.3.0
2023-05-29 10:05:32 +01:00
Vladimír Čunát
2f9191eb88
Merge branch 'master' into staging-next 2023-05-29 08:14:18 +02:00
github-actions[bot]
3d4b400675
Merge master into haskell-updates 2023-05-29 00:12:43 +00:00
github-actions[bot]
a981e2e0f3
Merge staging-next into staging 2023-05-28 18:01:48 +00:00
github-actions[bot]
3854041668
Merge master into staging-next 2023-05-28 18:01:12 +00:00
Hraban Luyat
af8b984617 sbcl: 2.3.4 -> 2.3.5 2023-05-28 10:29:36 -04:00
Ryan Lahfa
ff7378c992
Merge pull request #234495 from NixOS/update/edk2
edk2: 202211 -> 202302
2023-05-28 16:16:28 +02:00
github-actions[bot]
572e24048b
Merge staging-next into staging 2023-05-28 12:01:53 +00:00
github-actions[bot]
b83c196e2c
Merge master into staging-next 2023-05-28 12:01:19 +00:00
Daniel Nagy
db508e06a1
treewide: add meta.mainProgram and changelog urls (#204317) 2023-05-28 01:31:27 -05:00
github-actions[bot]
53e76520b9
Merge master into haskell-updates 2023-05-28 00:14:04 +00:00
github-actions[bot]
003f914d04
Merge staging-next into staging 2023-05-28 00:03:10 +00:00
github-actions[bot]
7dd6245c3c
Merge master into staging-next 2023-05-28 00:02:31 +00:00
Anderson Torres
1ea2260060 fleng: init at 14
FLENG is a low level concurrent logic programming language descended from
Prolog.
2023-05-27 22:54:58 +00:00
Raito Bezarius
ef6f3a5c9f edk2: 202211 -> 202302
https://github.com/tianocore/edk2/releases/tag/edk2-stable202302
2023-05-27 22:32:21 +02:00
github-actions[bot]
8440fddf99
Merge staging-next into staging 2023-05-27 12:02:30 +00:00
github-actions[bot]
d6d8e87ad4
Merge master into staging-next 2023-05-27 12:01:51 +00:00
mdarocha
3908d1362f dotnet-sdk_7: 7.0.203 -> 7.0.302 2023-05-27 11:31:29 +02:00
Sergei Trofimovich
c78434b2cd gcc12: 12.2.0 -> 12.3.0
Added an ICE backport for `ccache` build failure.
2023-05-27 09:42:47 +01:00
Dennis Gosnell
d7d6b1c445
haskell.compiler.ghc928: init at 9.2.8 2023-05-27 17:24:01 +09:00
Alyssa Ross
191075fa83
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
	pkgs/os-specific/linux/kernel/patches.nix
	pkgs/top-level/linux-kernels.nix
2023-05-26 18:37:26 +00:00
github-actions[bot]
73ddcacb58
Merge master into staging-next 2023-05-26 18:01:05 +00:00
Samuel Ainsworth
ef24799942
Merge pull request #234053 from ConnorBaker/fix/cudatoolkit_11_8-broken-symlink
cudaPackages_11_8.cudatoolkit: remove broken include/include symlink
2023-05-26 10:18:19 -07:00
Ryan Lahfa
4890a4a42c
Merge pull request #229718 from willcohen/emscripten-3.1.30
emscripten: 3.1.24 -> 3.1.39, binaryen: 112 -> 113
2023-05-26 16:05:41 +02:00
github-actions[bot]
a2cd4a67fd
Merge master into staging-next 2023-05-26 12:01:27 +00:00
Ulrik Strid
b25d03cc2f
Merge pull request #234037 from ligolang/ligo--0_66_0
ligo: 0.65.0 -> 0.66.0
2023-05-26 13:32:49 +02:00
Vladimír Čunát
c98d687fd6
gcc{6..11}: import a patch into nixpkgs
fetchurl can't be used on generated patches this way.
The hash doesn't match anymore.  fetchpatch would be an alternative.
2023-05-26 12:55:25 +02:00
github-actions[bot]
fced6fe69b
Merge master into staging-next 2023-05-26 00:02:17 +00:00
Rick van Schijndel
3f6415c11f
Merge pull request #233675 from MaxHearnden/msbuild
msbuild: always use shared library from dotnet-sdk
2023-05-25 22:01:36 +02:00
Sandro
5cd9b42645
Merge pull request #220739 from spacefrogg/factor-fix
factor: Fix "resource:work" pointing to store
2023-05-25 21:47:59 +02:00
Connor Baker
bbe6b21356 cudaPackages_11_8.cudatoolkit: remove broken include/include symlink
The broken symlink was causing tensorflow to fail to build.
2023-05-25 15:45:48 -04:00
Christoph Neidahl
43da3da1a0
open-watcom-v2-unwrapped: unstable-2023-03-20 -> unstable-2023-05-17 (#230544)
* open-watcom-v2-unwrapped: unstable-2023-03-20 -> unstable-2023-05-07

* open-watcom-v2-unwrapped: unstable-2023-05-07 -> unstable-2023-05-17
2023-05-25 21:15:50 +02:00
Sandro
0b2c60750b
Merge pull request #232355 from mdarocha/dotnet-8-update
dotnet-sdk_8: 8.0.0-preview.3.23177.8 -> 8.0.0-preview.4.23260.4
2023-05-25 21:14:59 +02:00
github-actions[bot]
137b9085b3
Merge master into staging-next 2023-05-25 18:01:20 +00:00
Laurent CaniBot
258620756d ligo: 0.65.0 -> 0.66.0 2023-05-25 17:37:31 +00:00
Weijia Wang
d7619eff54 treewide: development: use top-level fetchPypi 2023-05-25 15:52:27 +03:00
github-actions[bot]
8835c1fcc9
Merge master into staging-next 2023-05-25 12:01:37 +00:00
Sandro
45e2d86970
Merge pull request #232391 from chvp/bump-bluej 2023-05-25 12:56:00 +02:00
github-actions[bot]
0b9f14a636
Merge staging-next into staging 2023-05-25 06:01:34 +00:00
Weijia Wang
ca2e87e16e
Merge pull request #233895 from r-ryantm/auto-update/flix
flix: 0.36.0 -> 0.37.0
2023-05-25 08:55:04 +03:00
github-actions[bot]
a048bbb694
Merge staging-next into staging 2023-05-25 00:02:48 +00:00
R. Ryantm
e348ce050b flix: 0.36.0 -> 0.37.0 2023-05-24 23:55:11 +00:00
Felix Bühler
eea7fbcae9
Merge pull request #233783 from OPNA2608/update/fbc
fbc: 1.09.0 -> 1.10.0
2023-05-25 00:21:58 +02:00
MaxHearnden
af5ebde675 roslyn: Add dependencies for x86_64-darwin 2023-05-24 14:22:09 +01:00
github-actions[bot]
e4788e8eaa
Merge staging-next into staging 2023-05-24 12:02:04 +00:00
OPNA2608
fe128c93a8 fbc: 1.09.0 -> 1.10.0 2023-05-24 11:54:54 +02:00
Sandro
6d2e073b0b
Merge pull request #233732 from uninsane/pr/sane/hare-2023-04-23 2023-05-24 11:29:31 +02:00
github-actions[bot]
88e1ef2225
Merge staging-next into staging 2023-05-24 00:03:01 +00:00
Ben Siraphob
da2d7137e7
Merge pull request #233684 from siraben/vyper-update 2023-05-23 17:49:15 -04:00
Ben Siraphob
a13dfb7e5f
vyper: 0.3.6 -> 0.3.8 2023-05-23 17:38:23 -04:00
Colin
5595e88de9 harec: unstable-2023-02-18 -> unstable-2023-04-25 2023-05-23 20:18:51 +00:00
Colin
cdea9097fd hare: unstable-2023-03-15 -> unstable-2023-04-23 2023-05-23 20:06:46 +00:00
Barry Moore
50c7fbc96c gleam: 0.28.3 -> 0.29.0
Release notes: https://gleam.run/news/v0.29-gleam-gets-autocompletion
2023-05-23 15:49:03 -04:00
MaxHearnden
a3ec8a5128 msbuild: always use shared library from dotnet-sdk
This changes the use of .so to use the more generic
stdenv.hostPlatform.extensions.sharedLibrary.
This also overrides mono/build/extract_and_copy_hostfxr.sh which uses
the internet and is x86 specific.
2023-05-23 20:29:44 +01:00
Charlotte Van Petegem
cf69135539
openjfx17: fix building with webkit 2023-05-23 15:36:57 +02:00
github-actions[bot]
547d5b6ab0
Merge staging-next into staging 2023-05-23 06:01:59 +00:00
Pierre Bourdon
cab4887d01
Merge pull request #232308 from LibreCybernetics/update-jetbrains
jetbrains: 2023.1.1 → 2023.1.2
2023-05-23 06:54:42 +02:00
figsoda
a95a7508a5
Merge pull request #233521 from alyssais/cargo-cross-broken
cargo: mark broken for cross compilation to x86
2023-05-22 22:40:15 -04:00
Alyssa Ross
467c7ca038
cargo: mark broken for cross compilation to x86 2023-05-23 01:23:44 +00:00
github-actions[bot]
d95a50b7e2
Merge staging-next into staging 2023-05-23 00:03:01 +00:00
Weijia Wang
a76302bbd9
Merge pull request #229838 from r-ryantm/auto-update/closurecompiler
closurecompiler: 20221102 -> 20230502
2023-05-23 01:46:17 +03:00
Weijia Wang
b368164f48
Merge pull request #230083 from r-ryantm/auto-update/p4c
p4c: 1.2.3.8 -> 1.2.3.9
2023-05-23 00:59:35 +03:00
Alyssa Ross
adb54ab7bd rustc: remove unused argument 2023-05-22 21:46:08 +00:00
Weijia Wang
172df5e62b
Merge pull request #233390 from r-ryantm/auto-update/mercury
mercury: 22.01.5 -> 22.01.6
2023-05-23 00:39:22 +03:00
Weijia Wang
2aede23b8d
Merge pull request #233076 from r-ryantm/auto-update/tvm
tvm: 0.11.1 -> 0.12.0
2023-05-23 00:23:14 +03:00
Sandro
14caf1b6fe
Merge pull request #219414 from kmarker1101/mit-scheme
mitscheme: 11.2 -> 12.1
2023-05-22 20:33:22 +02:00
github-actions[bot]
8b49a663b0
Merge staging-next into staging 2023-05-22 18:02:03 +00:00
happysalada
bcacb9f404 ponyc: update google benchmark dep 2023-05-22 11:22:59 -04:00
happysalada
9589368900 pony-corral: unstable -> 0.7.0 2023-05-22 11:22:59 -04:00
Will Cohen
8392a8baa9 binaryen: 112 -> 113 2023-05-22 09:23:38 -04:00
Will Cohen
39d2924769 emscripten: 3.1.24 -> 3.1.39 2023-05-22 09:23:38 -04:00
R. Ryantm
8ecdde2a51 mercury: 22.01.5 -> 22.01.6 2023-05-22 11:09:11 +00:00
github-actions[bot]
0a501274a4
Merge staging-next into staging 2023-05-22 06:01:38 +00:00
Jonas Heinrich
c638c49911
Merge pull request #233218 from r-ryantm/auto-update/minimacy
minimacy: 0.6.4 -> 1.0.0
2023-05-22 07:18:10 +02:00
Fabián Heredia Montiel
009626acbc jetbrains.jdk: 17.0.6-b829.5 → 17.0.6-b829.9 2023-05-21 22:22:02 -06:00
github-actions[bot]
d35b735d92
Merge staging-next into staging 2023-05-22 00:03:15 +00:00
Mario Rodas
2fc65f26b8
Merge pull request #229191 from nagy/chicken-fixes
chickenPackages: separate build phases
2023-05-21 18:19:29 -05:00
r-vdp
714c4d35fa
elmPackages: nodejs_14 -> nodejs_18.
Follow-up to #230543, we were still using nodejs_14 for some packages.

I also turned the node dependency into an input, so that it can be
overriden, which is handy for local testing.
2023-05-22 00:26:25 +02:00
github-actions[bot]
fe05fe6f64
Merge staging-next into staging 2023-05-21 18:02:06 +00:00
Ben Gamari
601b8658d5 souffle: 2.3 -> 2.4 2023-05-21 12:28:24 -05:00
R. Ryantm
06eb062687 minimacy: 0.6.4 -> 1.0.0 2023-05-21 11:47:27 +00:00
github-actions[bot]
3cd24799a5
Merge staging-next into staging 2023-05-21 00:03:13 +00:00
Martin Weinelt
3e7e852f45
opendylan: mark broken
The last successful build was over 2 years ago.
2023-05-20 22:33:22 +02:00
R. Ryantm
d8e2957d46 tvm: 0.11.1 -> 0.12.0 2023-05-20 19:33:50 +00:00
github-actions[bot]
2881fdf82f
Merge staging-next into staging 2023-05-20 12:01:51 +00:00
Nick Cao
486995ccc1
Merge pull request #232923 from figsoda/typos
treewide: fix some typos
2023-05-20 05:16:57 -06:00
github-actions[bot]
a701f59fe2
Merge staging-next into staging 2023-05-20 06:01:58 +00:00
Mario Rodas
1d3593a6d1 clasp-common-lisp: build with fmt 9
Clasp is not compatible with fmt 10 yet.
2023-05-20 04:20:00 +00:00
figsoda
98b9e41f61 pkgs: fix typos 2023-05-19 22:31:04 -04:00
figsoda
a1755d23a7 hvm: 1.0.8 -> 1.0.9 2023-05-19 15:24:46 -04:00
github-actions[bot]
3ff58508a4
Merge staging-next into staging 2023-05-18 18:01:50 +00:00
Luflosi
f3afb133fe nextpnr: 0.5 -> 0.6
https://github.com/YosysHQ/nextpnr/releases/tag/nextpnr-0.6
2023-05-18 12:00:06 -05:00
github-actions[bot]
bec974b12f
Merge staging-next into staging 2023-05-18 12:01:45 +00:00
Weijia Wang
c772c846db stanc: 2.32.1 -> 2.32.2 2023-05-18 10:14:11 +03:00
R. Ryantm
a46ddcbe44 cmdstan: 2.32.1 -> 2.32.2 2023-05-18 03:33:09 +00:00
github-actions[bot]
7ea1ae9bba
Merge staging-next into staging 2023-05-18 00:02:46 +00:00
Dennis Gosnell
deb36f65f0
Merge pull request #232103 from tomcumming/purescript-aarch64
purescript: Add aarch64-darwin target
2023-05-18 07:36:31 +09:00
github-actions[bot]
c88f934492
Merge staging-next into staging 2023-05-17 18:02:29 +00:00
Tom Cumming
5907564df0 purescript: Add aarch64-darwin target 2023-05-17 17:23:52 +01:00
Nick Cao
bb42f49069
Merge pull request #232083 from nagy/cakelisp
cakelisp: update upstream url
2023-05-17 06:29:18 -06:00
github-actions[bot]
7c054a987b
Merge staging-next into staging 2023-05-17 12:02:19 +00:00
Guillaume Maudoux
33399c9de8
Merge pull request #229008 from whonore/dafny-4
dafny: 2.3.0 -> 4.0.0
2023-05-17 09:53:06 +02:00
mdarocha
82c4abd194 dotnet-sdk_8: 8.0.0-preview.3.23177.8 -> 8.0.0-preview.4.23260.4 2023-05-17 07:51:05 +02:00
github-actions[bot]
b1e6a454d3
Merge staging-next into staging 2023-05-17 00:02:45 +00:00
Elias Naur
8d2846edbb
gcc: only disable aligned_alloc for darwin build/host/target platforms (#226290)
Before this change a Darwin gcc would output binaries that avoid
aligned_alloc, regardless of target platform. That's fine for Darwin
targets, but not for non-darwin targets such as pkgsCross.raspberryPi.

This change replaces the single configure flag with a flag for
each of build, host, target.

Idea by @trofi.
2023-05-16 19:43:17 -04:00
Weijia Wang
cad5b82d2a
Merge pull request #232239 from wegank/vlang-darwin
vlang: fix build on darwin, cleanup
2023-05-17 00:47:16 +03:00
Kira Bruneau
f44f437676
Merge pull request #232279 from kira-bruneau/llvmPackages_rocm
llvmPackages_rocm.llvm: build on big-parallel
2023-05-16 16:43:23 -04:00
Weijia Wang
e8408498f7 vlang: eliminate env.VFLAGS 2023-05-16 23:20:58 +03:00
Kira Bruneau
0aee301acb llvmPackages_rocm.llvm: build on big-parallel
All other LLVM packages run on big-parallel, so we should be
consistent when building the ROCm fork.
2023-05-16 14:12:02 -04:00
Weijia Wang
fedc294f60 vlang: eliminate pkgsStatic 2023-05-16 19:53:18 +03:00
Weijia Wang
b1c83f9f01 vlang: fix build on darwin 2023-05-16 19:44:49 +03:00
happysalada
d922302771 vlang: improve darwin situation 2023-05-16 07:34:12 -04:00
happysalada
c19d8926fd tinycc: fix static build 2023-05-16 06:24:35 -04:00
happysalada
aa0d00f547 vlang: weekly.2022.20 -> weekly.2023.19 2023-05-16 06:24:35 -04:00
Daniel Nagy
0542751e1d
cakelisp: update upstream url 2023-05-16 11:30:00 +02:00
R. Ryantm
c534a77804 closurecompiler: 20221102 -> 20230502 2023-05-15 19:48:08 +00:00
Emery Hemingway
d925734d3b Nim: add meta.mainProgram 2023-05-15 17:28:15 +01:00
FlafyDev
b1efbff8ec flutter: Move artifact installation logic to the wrapper 2023-05-15 01:16:47 +03:00
Mario Rodas
7cd263abf7
Merge pull request #226414 from marsam/add-c0
c0: init at unstable-2022-10-25
2023-05-14 15:29:12 -05:00
Weijia Wang
1bec372529
Merge pull request #231543 from nicknovitski/fix-mruby
mruby: fix build on darwin
2023-05-14 15:04:59 +02:00
Sergei Trofimovich
e86e25fd5d
Merge pull request #228388 from trofi/gcc13
gcc13, gccgo13, gfortran13, gnat13: init at 13.1.0
2023-05-13 21:16:40 +01:00
Vladimír Čunát
1ba92fc952
Merge branch 'master' into staging-next 2023-05-13 19:23:59 +02:00
Sergei Trofimovich
4b8b00f56c gcc13, gccgo13, gfortran13, gnat13: init at 13.1.0
It's a copy of `gcc12.cc` implementation. Nothing special added here.

Note that gccgo13 does not build yet (similar to existing gccgo12).
The failure is related to libgcc_s.so lookup problems. Not specific
to gcc-13 release.

Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-05-13 13:18:08 +01:00
Francesco Gazzetta
7b5fb7cf98
Merge pull request #231618 from r-ryantm/auto-update/lobster
lobster: 2023.5 -> 2023.6
2023-05-13 14:11:50 +02:00
github-actions[bot]
51e24f4508
Merge master into staging-next 2023-05-13 12:01:05 +00:00
Sandro
f96c763702
Merge pull request #231070 from revol-xut/lfc
lingua-franca: 0.3.0 -> 0.4.0
2023-05-13 12:49:13 +02:00
R. Ryantm
66d193a467 lobster: 2023.5 -> 2023.6 2023-05-13 07:09:40 +00:00
github-actions[bot]
0b21b8d8a6
Merge master into staging-next 2023-05-13 06:01:08 +00:00
Maciej Krüger
0294e83aaa
Merge pull request #231319 from hacker1024/package/flutter-3.10
flutter: 3.7.12 -> 3.10.0
2023-05-13 03:14:42 +02:00
github-actions[bot]
2f665c348c
Merge master into staging-next 2023-05-13 00:02:05 +00:00
figsoda
15f699fbf9 rustfmt: fix warning
rustPlatform.rust has been deprecated in https://github.com/NixOS/nixpkgs/pull/230951
2023-05-12 19:49:14 -04:00
Javier Olaechea
dd584d82f1 rustfmt: fix on darwin
Reading this [rust-issue] it seems that we have to link against
rustc_driver. The [clippy.nix] expression already does something similar

Of the 4 executables found in the result of building rustfmt only
rustfmt and git-rustfmt needed to be linked. The other worked without
linking to rustc_driver.

[rust-issue]: https://github.com/rust-lang/rust/pull/105609
[clippy.nix]: c8cf570dae/pkgs/development/compilers/rust/clippy.nix (L27-L36)
2023-05-12 18:44:20 -04:00
Nick Novitski
d2bccc54e0 mruby: fix build on darwin 2023-05-12 14:10:25 -07:00
Martin Weinelt
7818e35cc0
Merge pull request #231503 from figsoda/kind2
kind2: 0.3.7 -> 0.3.10
2023-05-12 22:06:16 +02:00
Martin Weinelt
2ee9aa3a8c
Merge pull request #231490 from figsoda/hvm
hvm: 1.0.0 -> 1.0.8
2023-05-12 22:02:50 +02:00
github-actions[bot]
206417b7a2
Merge master into staging-next 2023-05-12 18:01:18 +00:00
figsoda
bc3ae46139 kind2: 0.3.7 -> 0.3.10
Diff: https://diff.rs/kind2/0.3.7/0.3.10
2023-05-12 13:40:24 -04:00
Nick Cao
cbfad2969a
Merge pull request #230965 from GaetanLepage/julia-bin
julia-bin: 1.8.5 -> 1.9.0
2023-05-13 00:06:11 +08:00
figsoda
187c93d636 hvm: 1.0.0 -> 1.0.8
Diff: https://diff.rs/hvm/1.0.0/1.0.8
2023-05-12 11:43:34 -04:00
Alyssa Ross
46cb0eb1a9 rustPlatform.rust: deprecate
It is almost never correct to use these attributes, because they don't
work correctly with splicing.  Compare:

	% nix repl -f . --argstr crossSystem aarch64-linux
	Welcome to Nix 2.10.3. Type :? for help.

	Loading installable ''...
	Added 18988 variables.
	nix-repl> callPackage ({ stdenv, rustc }: (stdenv.mkDerivation { name = ""; nativeBuildInputs = [ rustc ]; }).nativeBuildInputs) {}
	«derivation /nix/store/bjrkg8kcq3hvg5kb03ivb856zy91qpbk-aarch64-unknown-linux-gnu-rustc-1.69.0.drv» ]

	nix-repl> callPackage ({ stdenv, rustPlatform }: (stdenv.mkDerivation { name = ""; nativeBuildInputs = [ rustPlatform.rust.rustc ]; }).nativeBuildInputs) {}
	«derivation /nix/store/ra5r07j52y7akclr827r3dzxzvqnvfbl-rustc-1.69.0.drv» ]

I'm not sure this is fixable.  I don't think it's worth keeping them
around considering we have top level attributes.  It makes overriding
slightly more annoying, but only slightly.
2023-05-12 15:31:21 +00:00
Alyssa Ross
5e06b3cb19 treewide: don't use rustPlatform.rust
This will be deprecated in the next commit.
2023-05-12 15:31:21 +00:00
Gaetan Lepage
242173b0f2 julia-bin: 1.8.5 -> 1.9.0 2023-05-12 15:50:31 +02:00
hacker1024
6af167f231 flutter: Keep 3.7 available 2023-05-12 23:09:41 +10:00
hacker1024
97b7363358 flutter: Append to search paths in the wrapper
Appending to search paths allows dependencies to be replaced at runtime.

This is useful, for example, to the Dart packaging mechanism, which supplies a wrapped version of Git that spoofs cached Git package revisions for Pub.
2023-05-12 23:09:41 +10:00
hacker1024
7f36f6e96b flutter: 3.7.12 -> 3.10.0 2023-05-12 23:09:41 +10:00
hacker1024
4f4359d6ca dart: 2.19.6 -> 3.0.0 2023-05-12 23:02:52 +10:00
github-actions[bot]
30ae8398a9
Merge master into staging-next 2023-05-12 12:01:26 +00:00
Marigold-infrabot
9c2e30bd1e
ligo: 0.64.2 -> 0.65.0 (#231142)
* ligo: 0.64.2 -> 0.65.0

* ligo: make compatible with hacl-star 0.7.0 again

* ligo: Remove broken changelog generation

---------

Co-authored-by: Laurent CaniBot <laurent@marigold.dev>
Co-authored-by: Ulrik Strid <ulrik.strid@outlook.com>
2023-05-12 13:37:12 +02:00
github-actions[bot]
84352fc449
Merge master into staging-next 2023-05-12 00:01:57 +00:00
hacker1024
6b30711c43
flutter: Install Android variant artifacts in platform subdirectories (#231296)
* flutter: Allow installing artifacts in subdirectories

* flutter: Install Android variant artifacts in platform subdirectories
2023-05-11 23:55:11 +02:00
revol-xut
c1ee77dc1e
lingua-franca: 0.3.0 -> 0.4.0 2023-05-11 14:10:38 +02:00
github-actions[bot]
079dc4c27d
Merge master into staging-next 2023-05-11 00:02:13 +00:00
sternenseemann
b3fb03d00f
Merge pull request #228965 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
2023-05-10 22:45:32 +02:00
Sandro
f431ee4a85
Merge pull request #226492 from Luflosi/update/yosys
yosys: 0.28 -> 0.29
2023-05-10 20:01:29 +02:00
Sandro
1715b160f0
Merge pull request #218905 from GZGavinZhao/ldc
ldc: 1.30.0 -> 1.31.0, bump bootstrap ldc to 1.30.0, bump LLVM to 14
2023-05-10 19:24:11 +02:00
Sam Wight
dd3651b95b crystal_1_8: 1.8.1 -> 1.8.2 2023-05-10 10:51:58 -05:00
sternenseemann
bd8335552e Merge remote-tracking branch 'origin/master' into haskell-updates 2023-05-10 16:32:00 +02:00
Luflosi
122ba37e0c
yosys: 0.28 -> 0.29
https://github.com/YosysHQ/yosys/releases/tag/yosys-0.29
2023-05-10 15:45:25 +02:00
github-actions[bot]
71874015ba
Merge master into staging-next 2023-05-10 12:01:10 +00:00
Vladimír Čunát
ae3f6c9c6d
Merge #229898: gcc: install info files serially
...into staging
2023-05-10 08:39:57 +02:00
Jörg Thalheim
fd40a96180
Merge pull request #230943 from alyssais/rustc-name
rustc: fix name when cross compiled
2023-05-10 07:33:38 +01:00
Nick Cao
3b1d3f9e22
Merge pull request #230966 from GaetanLepage/julia
julia: 1.8.5 -> 1.9.0
2023-05-10 14:08:32 +08:00
github-actions[bot]
c3e196104d
Merge staging-next into staging 2023-05-10 06:02:13 +00:00
Sergei Trofimovich
794d821503 dmd: pull in missing libgcc.so dependency
Without the change autopatchelf fails to find the dependency as:

    searching for dependencies of ...-dmd-bootstrap-2.090.1/bin/dmd
        libgcc_s.so.1 -> not found!
    auto-patchelf: 6 dependencies could not be satisfied

Full build log: https://hydra.nixos.org/log/plma45m19p0cm1i04c4qzmfi54n38ydk-dmd-bootstrap-2.090.1.drv
2023-05-09 20:25:54 -07:00
github-actions[bot]
5b55bccfe2
Merge master into haskell-updates 2023-05-10 00:11:58 +00:00
github-actions[bot]
2d07e76d1a
Merge staging-next into staging 2023-05-10 00:03:33 +00:00
Gaetan Lepage
2f82431c7f julia: 1.8.5 -> 1.9.0 2023-05-09 23:57:28 +02:00
Robert Scott
de62c56cab
Merge pull request #229373 from jleightcap/jl/yosys-0.28
yosys: 0.27 -> 0.28
2023-05-09 22:49:48 +01:00
Alyssa Ross
454b2058d4
rustc: fix name when cross compiled
I made a mistake when trying to add the target prefix to Rust cross
compilers: pkgsCross.aarch64-multiplatform.rustc ended up being called
"aarch64-unknown-linux-gnu-rustc-aarch64-unknown-linux-gnu-1.69.0",
which is a bit verbose.

With this change:

	nix-repl> rustc.name
	"rustc-1.69.0"

	nix-repl> pkgsCross.aarch64-multiplatform.buildPackages.rustc.name
	"aarch64-unknown-linux-gnu-rustc-1.69.0"

	nix-repl> pkgsCross.aarch64-multiplatform.rustc.name
	"rustc-aarch64-unknown-linux-gnu-1.69.0"

As intended.

Fixes: 57e73d23bb ("rustc,rustPlatform.buildRustPackage: broaden platforms")
2023-05-09 20:13:45 +00:00
github-actions[bot]
b5b52a946a
Merge staging-next into staging 2023-05-09 18:02:32 +00:00
Arnout Engelen
f3995cee01
gcc: install info files serially
installing info files in parallel is dangerous, because
`install-info` will write to a `dir-file` as a side-effect,
and it has no protection against multiple `install-info`
processes running in parallel and overwriting each others'
changes.

Local fix until we can fix the `Makefile.in` generation
upstream

Fixes #229470
2023-05-09 19:02:41 +02:00
Artturin
d53d5a8b38 llvmPackages.lldb: deduplicate >10 2023-05-09 19:59:45 +03:00
Naïm Favier
9d30031014 haskell.compiler.ghcHEAD: 9.7.20230406 -> 9.7.20230505
04b80850...983ce558

Adds support for callbacks to the JS backend.
2023-05-09 18:16:07 +02:00
Adam Joseph
62794bf2bb wrapClangMulti: link include/c++ into gcc_multi_sysroot
The phoney gcc that we construct for multilib was missing the
`$out/include/c++` directory which `cc-wrapper` needs to pass as an
`-isystem` to `clang`.

Closes #221891
2023-05-09 00:16:24 -07:00
Adam Joseph
c02c5f0860 wrapClangMulti: set gcc_multi_sysroot.langCC
The phoney gcc that we construct for multilib was missing the
`langCC` attribute, which `cc-wrapper` needs in order to decide
whether or not to add gcc's `libstdc++` headers as an `-isystem` for
`clang`.
2023-05-09 00:16:24 -07:00
Adam Joseph
0e9ef0a07d cc-wrapper: when merging gcc32 and gcc64, merge libgcc as well
Our gcc_multi and glibc_multi expressions merge together a
32-bit-targeted and 64-bit-targeted gcc.  However they do not thread
through the passthru.libgcc from these merged gccs.

This commit corrects that.

It also extends passthru.libgcc to allow a *list* rather than just a
single outpath.

Resolves part of #221891 (at least getting it back to the error
message it gave before).
2023-05-09 00:16:24 -07:00
github-actions[bot]
5b562cf621
Merge staging-next into staging 2023-05-09 00:02:44 +00:00
Marek Fajkus
7da61c1cba
Merge pull request #230543 from turboMaCk/elm-node-18
elmPackages: Use nodejs 18
2023-05-08 20:02:11 +02:00
github-actions[bot]
54295bf976
Merge staging-next into staging 2023-05-08 18:02:09 +00:00
Weijia Wang
75c6b807a7
Merge pull request #230733 from fetsorn/typo/llvm
llvm: fix typos
2023-05-08 20:15:26 +03:00
fetsorn
91e7191660 llvm: fix typos
"verion" -> "version"
2023-05-08 21:05:07 +04:00
Weijia Wang
f552c37b8b
Merge pull request #230716 from fetsorn/typo/ghc
ghc: fix typos
2023-05-08 19:28:23 +03:00
fetsorn
560123c482 ghc: fix typos
"depedendency" -> "dependency"
2023-05-08 20:12:24 +04:00
fetsorn
2b900cb3ba elm: fix typo
"dependecies" -> "dependencies"
2023-05-08 20:05:13 +04:00
Marek Fajkus
4e8cbf9531
elmPackages: Use nodejs 18
Related to issue #229910
This bumps nodejs to 18 since 16 is soon to EOL.
2023-05-07 18:00:29 +02:00
github-actions[bot]
7b8084a6b9
Merge staging-next into staging 2023-05-07 12:02:13 +00:00
github-actions[bot]
5844313b95
Merge master into staging-next 2023-05-07 12:01:30 +00:00
Weijia Wang
eb751d6522
Merge pull request #230372 from stephank/feat/swift-format
swift-format: init at 5.8
2023-05-07 09:59:10 +03:00
github-actions[bot]
a0eb573683
Merge staging-next into staging 2023-05-07 00:03:11 +00:00
github-actions[bot]
3510094ebe
Merge master into staging-next 2023-05-07 00:02:36 +00:00
Jack Leightcap
3a31db0fe1
yosys: 0.27 -> 0.28 https://github.com/YosysHQ/yosys/releases/tag/yosys-0.28
Signed-off-by: Jack Leightcap <jack@leightcap.com>
2023-05-06 17:03:40 -04:00
Sandro
190295af50
Merge pull request #224453 from niknetniko/bump/jcef
jetbrains.jcef: 611 -> 654
2023-05-06 21:26:37 +02:00
github-actions[bot]
1edcdf34e3
Merge staging-next into staging 2023-05-06 18:01:44 +00:00
github-actions[bot]
95930c37cc
Merge master into staging-next 2023-05-06 18:01:10 +00:00
Stéphan Kochen
1f5b379683 swift-format: init at 5.8 2023-05-06 19:40:08 +02:00
Marek Fajkus
80f12c2f8d
Merge pull request #230184 from turboMaCk/elm-update-node
elmPackages: update nodejs to 16
2023-05-06 14:19:03 +02:00
github-actions[bot]
1fd0032ce6
Merge staging-next into staging 2023-05-06 12:01:42 +00:00
github-actions[bot]
805ffdeca7
Merge master into staging-next 2023-05-06 12:01:05 +00:00
Weijia Wang
58d11d3f47
Merge pull request #230200 from elliottslaughter/terra-1.1.0
terra: 1.0.6 -> 1.1.0
2023-05-06 13:32:27 +03:00
github-actions[bot]
76e7973d1c
Merge staging-next into staging 2023-05-06 00:02:57 +00:00
github-actions[bot]
f62c3cbbdc
Merge master into staging-next 2023-05-06 00:02:06 +00:00
Weijia Wang
aa6064ceee
Merge pull request #230165 from r-ryantm/auto-update/osl
osl: 1.12.11.0 -> 1.12.12.0
2023-05-06 00:13:55 +03:00
Elliott Slaughter
525656f7a2 terra: 1.0.6 -> 1.1.0 2023-05-05 14:07:08 -07:00
Marek Fajkus
d23d16c1da
elmPackages: update nodejs to 16 2023-05-05 22:30:24 +02:00
Marek Fajkus
7d76bc7e81
Merge pull request #230137 from bburdette/elm-tools-update
elm-tools-update
2023-05-05 21:10:36 +02:00