nixpkgs/pkgs/development/tools/rust/bindgen/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, llvmPackages }:
2016-11-23 17:09:29 +00:00
# Future work: Automatically communicate NIX_CFLAGS_COMPILE to bindgen's tests and the bindgen executable itself.
2017-03-22 02:00:11 +00:00
rustPlatform.buildRustPackage rec {
2016-11-23 17:09:29 +00:00
name = "rust-bindgen-${version}";
2017-07-07 07:29:54 +01:00
version = "0.26.1";
2016-11-23 17:09:29 +00:00
src = fetchFromGitHub {
2017-03-22 02:00:11 +00:00
owner = "servo";
2016-11-23 17:09:29 +00:00
repo = "rust-bindgen";
2017-03-22 02:00:11 +00:00
rev = "v${version}";
2017-07-07 07:29:54 +01:00
sha256 = "1w1vbfhmcrcl0vacxkivmavjp51cvpyq5lk75n9zs80q5x38ypna";
2016-11-23 17:09:29 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2016-11-23 17:09:29 +00:00
buildInputs = [ llvmPackages.clang-unwrapped ];
configurePhase = ''
export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib"
'';
postInstall = ''
wrapProgram $out/bin/bindgen --set LIBCLANG_PATH "${llvmPackages.clang-unwrapped}/lib"
'';
2017-07-07 07:29:54 +01:00
depsSha256 = "0s1x4ygjwc14fbl2amz5g6n7lq07zy8b00mvwfw6vi6k4bq1g59i";
2016-11-23 17:09:29 +00:00
doCheck = false; # A test fails because it can't find standard headers in NixOS
meta = with stdenv.lib; {
description = "C binding generator";
2017-03-22 02:00:11 +00:00
homepage = https://github.com/servo/rust-bindgen;
2016-11-23 17:09:29 +00:00
license = with licenses; [ bsd3 ];
maintainers = [ maintainers.ralith ];
};
}