Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 29dc0ba6577c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4c512e06506c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 14, 2019

  1. cargo-xbuild: 0.5.11 -> 0.5.12

    xrelkd committed Jun 14, 2019
    Copy the full SHA
    b9d5b16 View commit details
  2. cargo-xbuild: 0.5.11 -> 0.5.12 (#63109)

    cargo-xbuild: 0.5.11 -> 0.5.12
    dywedir authored Jun 14, 2019
    Copy the full SHA
    4c512e0 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/rust/cargo-xbuild/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-xbuild/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,20 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-xbuild";
version = "0.5.11";
version = "0.5.12";

src = fetchFromGitHub {
owner = "rust-osdev";
repo = pname;
rev = "v${version}";
sha256 = "04vgb443bmrfklvzhjfidpi3pp2svbc3bwq674m9fn7sbdp6rnwm";
sha256 = "1vjsss2zrja4kpr83vw6g0hf9xdx658wjhdiymzndbcf32qrx7x1";
};

cargoSha256 = "1r9i79lymfwpbcx2lp509v435qpkl9bqly1ya369p41n5yprrcjv";

meta = with stdenv.lib; {
description = "Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc";
homepage = https://github.com/rust-osdev/cargo-xbuild;
homepage = "https://github.com/rust-osdev/cargo-xbuild";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ xrelkd ];
platforms = platforms.all;