···3333 license = licenses.gpl3;3434 platforms = stdenv.lib.platforms.x86_64; # i686 builds fail due to lmdb3535 maintainers = with maintainers; [ puffnfresh ];3636+ broken = true;3637 };3738}
+6-6
pkgs/development/compilers/rust/bootstrap.nix
···1414 then "x86_64-apple-darwin"1515 else abort "missing boostrap url for platform ${stdenv.system}";16161717- # fetch hashes by running `print-hashes.sh 1.12.1`1717+ # fetch hashes by running `print-hashes.sh 1.13.0`1818 bootstrapHash =1919 if stdenv.system == "i686-linux"2020- then "ede9b9d14d1ddbc29975d1ead73fcf2758719b4b371363afe1c32eb8d6e96bb3"2020+ then "239734113f6750d31085c7a08c260d492991cc1ef10817b6d44154515f3f9439"2121 else if stdenv.system == "x86_64-linux"2222- then "9e546aec13e389429ba2d86c8f4e67eba5af146c979e4faa16ffb40ddaf9984c"2222+ then "95f4c372b1b81ac1038161e87e932dd7ab875d25c167a861c3949b0f6a65516d"2323 else if stdenv.system == "i686-darwin"2424- then "2648645c4fe1ecf36beb7de63501dd99e9547a7a6d5683acf2693b919a550b69"2424+ then "f6e01cab3bf8d0a6fe9cc2447aa10ce894569daaa72d44063c229da918b96023"2525 else if stdenv.system == "x86_64-darwin"2626- then "0ac5e58dba3d24bf09dcc90eaac02d2df053122b0def945ec4cfe36ac6d4d011"2626+ then "f538ca5732b844cf7f00fc4aaaf200a49a845b58b4ec8aef38da0b00e2cf6efe"2727 else throw "missing boostrap hash for platform ${stdenv.system}";28282929 needsPatchelf = stdenv.isLinux;···3333 sha256 = bootstrapHash;3434 };35353636- version = "1.12.1";3636+ version = "1.13.0";3737in38383939rec {
+2-2
pkgs/development/compilers/rust/cargo.nix
···2424 LIBGIT2_SYS_USE_PKG_CONFIG=1;25252626 configurePhase = ''2727- ./configure --enable-optimize --prefix=$out --local-cargo=${rustPlatform.rust.cargo}/bin/cargo2727+ ./configure --enable-optimize --prefix=$out2828 '';29293030 buildPhase = "make";···6060 cargo test6161 '';62626363- # Disable check phase as there are failures (author_prefers_cargo test fails)6363+ # Disable check phase as there are failures (4 tests fail)6464 doCheck = false;65656666 meta = with stdenv.lib; {
+7-7
pkgs/development/compilers/rust/default.nix
···7788rec {99 rustc = callPackage ./rustc.nix {1010- shortVersion = "1.13";1010+ shortVersion = "1.14";1111 isRelease = true;1212 forceBundledLLVM = false;1313 configureFlags = [ "--release-channel=stable" ];1414- srcRev = "2c6933acc05c61e041be764cb1331f6281993f3f";1515- srcSha = "1w0alyyc29cy2lczrqvg1kfycjxy0xg8fpzdac80m88fxpv23glp";1414+ srcRev = "e8a0123241f0d397d39cd18fcc4e5e7edde22730";1515+ srcSha = "1sla3gnx9dqvivnyhvwz299mc3jmdy805q2y5xpmpi1vhfk0bafx";16161717 patches = [1818 ./patches/disable-lockfile-check-stable.patch···2525 };26262727 cargo = callPackage ./cargo.nix rec {2828- version = "0.14.0";2929- srcRev = "eca9e159b6b0d484788ac757cf23052eba75af55";3030- srcSha = "1zm5rzw1mvixnkzr4775pcxx6k235qqxbysyp179cbxsw3dm045s";3131- depsSha256 = "0gpn0cpwgpzwhc359qn6qplx371ag9pqbwayhqrsydk1zm5bm3zr";2828+ version = "0.15.0";2929+ srcRev = "298a0127f703d4c2500bb06d309488b92ef84ae1";3030+ srcSha = "0v74r18vszapw2rfk7w72czkp9gbq4s1sggphm5vx0kyh058dxc5";3131+ depsSha256 = "0ksiywli8r4lkprfknm0yz1w27060psi3db6wblqmi8sckzdm44h";32323333 inherit rustc; # the rustc that will be wrapped by cargo3434 inherit rustPlatform; # used to build cargo