about summary refs log tree commit diff
path: root/pkgs/development/compilers
Commit message (Collapse)AuthorAge
* Merge staging into staging-nextFrederik Rietdijk2020-01-31
|\
| * Re-Revert "clang_7,clang_8,clang_9: fix compilation of HIP-code"Matthew Bauer2020-01-28
| | | | | | | | | | This reverts commit f14a4d60b74625547ba7fc0572e42e9b61c0e54f, and thus applying 558af6fbc7c15f472658339668113f4d5c6440e0.
| * Merge staging-next into stagingFrederik Rietdijk2020-01-28
| |\
| * | graalvm8: 19.1.1 -> 19.2.1hlolli2020-01-18
| | | | | | | | | | | | - - nixpkgs now with full darwin support
* | | Merge pull request #76905 from wahjava/update-to-sbcl-2.0.0Michael Raskin2020-01-30
|\ \ \ | | | | | | | | sbcl: 1.5.6 -> 2.0.1
| * | | sbcl: 2.0.0 -> 2.0.1Ashish SHUKLA2020-01-26
| | | |
| * | | sbcl: 1.5.6 -> 2.0.0Ashish SHUKLA2020-01-03
| | | |
* | | | Merge pull request #75545 from aca-labs/crystalPeter Hoeg2020-01-30
|\ \ \ \ | | | | | | | | | | crystal: 0.31.1 -> 0.32.1
| * | | | crystal: 0.32.0 -> 0.32.1Kim Burgess2020-01-30
| | | | |
| * | | | crystal: 0.31.1 -> 0.32.0Kim Burgess2020-01-30
| | | | |
| * | | | crystal: build 0.31 with 0.30 binary distKim Burgess2020-01-30
| | | | |
* | | | | nim: 1.0.4 -> 1.0.6Emery Hemingway2020-01-30
|/ / / /
* | | | gcc49: fix build for glibc>=2.28Maximilian Bosch2020-01-28
| | | | | | | | | | | | | | | | Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
* | | | picat: 1.9-4 -> 2.8-2Maximilian Bosch2020-01-28
| | | |
* | | | cudatoolkit_7*: build w/gcc6Maximilian Bosch2020-01-28
| | | |
* | | | gcc5: removeMaximilian Bosch2020-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Latest gcc5 release was in 2017[1], doesn't build with glibc 2.30[2]. [1] https://gcc.gnu.org/gcc-5/ [2] https://hydra.nixos.org/build/110408216
* | | | cudatoolkit_8: build with gcc6Maximilian Bosch2020-01-28
| |_|/ |/| |
* | | Merge master into staging-nextFrederik Rietdijk2020-01-28
|\ \ \
| * | | Revert "clang_7,clang_8,clang_9: fix compilation of HIP-code"Matthew Bauer2020-01-27
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 558af6fbc7c15f472658339668113f4d5c6440e0. This was meant for staging. Will apply there.
| * | | Merge pull request #78308 from DieGoldeneEnte/clang-hip-patchMatthew Bauer2020-01-27
| |\ \ \ | | | | | | | | | | clang_7,clang_8,clang_9: fix compilation of HIP-code
| | * | | clang_7,clang_8,clang_9: fix compilation of HIP-codeHolger Wünsche2020-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR aims to fix the same problem as NixOS/nixpkgs PR #77476; enabling to compile HIP-code using the packaged clang compiler, by also searching in $PATH for required binaries. The change is committed upstream (https://reviews.llvm.org/D72903), but will not land in the clang versions in nixpkgs (only clang 10+). As such I have created patches for the affected versions. To compile HIP-code lld is needed, so I added it to the clang-package.<Paste>
| * | | | Merge pull request #78265 from Synthetica9/https-homepagesSilvan Mosberger2020-01-27
| |\ \ \ \ | | | | | | | | | | | | treewide: fix redirected urls
| | * | | | treewide: fix redirected urlsPatrick Hilhorst2020-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
| * | | | | Merge pull request #77487 from dtzWill/update/acpica-iasl-20200110Will Dietz2020-01-26
| |\ \ \ \ \ | | | | | | | | | | | | | | acpica-tools,iasl: 20191213 -> 20200110
| | * | | | | acpica-tools,iasl: 20191213 -> 20200110Will Dietz2020-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Actually, we apparently managed to bump iasl separately so acpica-tools are upgraded from 20191018.
| * | | | | | Merge pull request #78537 from r-ryantm/auto-update/tinygoMario Rodas2020-01-26
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | tinygo: 0.10.0 -> 0.11.0
| | * | | | | | tinygo: 0.10.0 -> 0.11.0R. RyanTM2020-01-26
| | | | | | | |
| * | | | | | | Merge pull request #78524 from r-ryantm/auto-update/psc-packageMario Rodas2020-01-26
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | psc-package: 0.5.1 -> 0.6.0
| | * | | | | | | psc-package: 0.5.1 -> 0.6.0R. RyanTM2020-01-26
| | |/ / / / / /
| * | | | | | | Merge pull request #78272 from avakhrenev/openjdk-11.0.6Aaron Andersen2020-01-25
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | openjdk11: 11.0.4 -> 11.0.6
| | * | | | | | | openjdk11: 11.0.4 -> 11.0.6Alexey Vakhrenev2020-01-22
| | | |_|_|/ / / | | |/| | | | |
| * | | | | | | gavrasm: init at 4.5MarcFontaine2020-01-24
| | | | | | | |
| * | | | | | | Pr scala out dir cleaned (#78042)Jörg Thalheim2020-01-24
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Pr scala out dir cleaned
| | * | | | | | | scala: move text files from $out to appropriate subdirsJean-Marie Gaillourdet2020-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, this package installed files called LICENSE and NOTICE at the profile root directory. Which conflicts with other packages with the same issue. Those files reside now in $out/share/doc/scala/.
| | * | | | | | | scala_2_12: move text files from $out to appropriate subdirsJean-Marie Gaillourdet2020-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, this package installed files called LICENSE and NOTICE at the profile root directory. Which conflicts with other packages with the same issue. Those files reside now in $out/share/doc/scala/.
| | * | | | | | | scala_2_11: move text files from $out to appropriate subdirsJean-Marie Gaillourdet2020-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, this package installed files called LICENSE and NOTICE at the profile root directory. Which conflicts with other packages with the same issue. Those files reside now in $out/share/doc/scala/.
| * | | | | | | | jetbrains.jdk: 485.1 -> 520.30Olli Helenius2020-01-24
| | | | | | | | |
| * | | | | | | | Merge pull request #78157 from ↵worldofpeace2020-01-22
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | virusdave/dnicponski/scratch/update_unison_version_1.0.h-alpha unison-ucm 1.0.M1g-alpha -> 1.0.M1h-alpha
| | * | | | | | | | unison-ucm 1.0.g-alpha -> 1.0.h-alphaDave Nicponski2020-01-21
| | | |/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | Update binary derivation for latest release.
| * | | | | | | | graalvm8-ee: 19.2.1 -> 19.3.1, graalvm11-ee: init at 19.3.1 (#74010)Jörg Thalheim2020-01-22
| |\ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | graalvm8-ee: 19.2.1 -> 19.3.1, graalvm11-ee: init at 19.3.1
| | * | | | | | | graalvm: 19.3.0.2 -> 19.3.1volth2020-01-15
| | | | | | | | |
| | * | | | | | | graalvm-ee: 19.3.0 -> 19.3.0.2volth2020-01-06
| | | | | | | | |
| | * | | | | | | graalvm8-ee: 19.2.1 -> 19.3.0, graalvm11-ee: init at 19.3.0volth2019-11-24
| | | | | | | | |
| * | | | | | | | ocaml-ng.ocamlPackages_4_10.ocaml: init at 4.10.0+beta1Vincent Laporte2020-01-20
| | |_|_|_|/ / / | |/| | | | | |
| * | | | | | | dotnetCorePackages.sdk_2_2: throw EOL exceptionnyanloutre2020-01-19
| | | | | | | |
| * | | | | | | dotnetCorePackages.sdk_3_1: 3.1.100 -> 3.1.101nyanloutre2020-01-19
| | | | | | | |
| * | | | | | | dotnetCorePackages.netcore_3_1: init at 3.1.1nyanloutre2020-01-19
| | | | | | | |
| * | | | | | | dotnetCorePackages.aspnetcore_3_1: init at 3.1.1nyanloutre2020-01-19
| | | | | | | |
| * | | | | | | dotnetCorePackages.sdk_3_0: 3.0.100 -> 3.0.102nyanloutre2020-01-19
| | | | | | | |
| * | | | | | | dotnetCorePackages.netcore_3_0: init at 3.0.2nyanloutre2020-01-19
| | | | | | | |