Merge pull request #24198 from 8573/8573/pkg/update/rust-bindgen/0.22.1/1

rust-bindgen: 0.19.1 -> 0.22.1
This commit is contained in:
Arseniy Seroka 2017-03-22 12:37:08 +03:00 committed by GitHub
commit b02ff8ebd2

View File

@ -1,18 +1,16 @@
{ stdenv, fetchFromGitHub, rustPlatform, llvmPackages }:
with rustPlatform;
# Future work: Automatically communicate NIX_CFLAGS_COMPILE to bindgen's tests and the bindgen executable itself.
buildRustPackage rec {
rustPlatform.buildRustPackage rec {
name = "rust-bindgen-${version}";
version = "0.19.1";
version = "0.22.1";
src = fetchFromGitHub {
owner = "Yamakaky";
owner = "servo";
repo = "rust-bindgen";
rev = "${version}";
sha256 = "0pv1vcgp455hys8hb0yj4vrh2k01zysayswkasxq4hca8s2p7qj9";
rev = "v${version}";
sha256 = "10cavj6rrbdqi4ldfmhxy6xxp0q65pxiypdgq2ckz0c37g04qqqs";
};
buildInputs = [ llvmPackages.clang-unwrapped ];
@ -21,13 +19,13 @@ buildRustPackage rec {
export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib"
'';
depsSha256 = "0rlmdiqjg9ha9yzhcy33abvhrck6sphczc2gbab9zhfa95gxprv8";
depsSha256 = "1gvva6f64ndzsswv1a7c31wym12yp4cg1la4zjwlzkrx62kgyk8x";
doCheck = false; # A test fails because it can't find standard headers in NixOS
meta = with stdenv.lib; {
description = "C binding generator";
homepage = https://github.com/Yamakaky/rust-bindgen;
homepage = https://github.com/servo/rust-bindgen;
license = with licenses; [ bsd3 ];
maintainers = [ maintainers.ralith ];
};