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}";
2018-03-25 23:08:04 +00:00
version = "0.35.0";
2016-11-23 17:09:29 +00:00
src = fetchFromGitHub {
2017-07-28 10:33:03 +00:00
owner = "rust-lang-nursery";
2016-11-23 17:09:29 +00:00
repo = "rust-bindgen";
2018-03-25 23:08:04 +00:00
rev = "v${version}";
sha256 = "1qs67mkvrzwzi69rlq49p098h247197f2jiq1f4ivw9naggq5c7v";
2016-11-23 17:09:29 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2018-03-25 23:08:04 +00:00
buildInputs = [ llvmPackages.clang-unwrapped.lib ];
2016-11-23 17:09:29 +00:00
configurePhase = ''
2018-03-25 23:08:04 +00:00
export LIBCLANG_PATH="${llvmPackages.clang-unwrapped.lib}/lib"
2016-11-23 17:09:29 +00:00
'';
postInstall = ''
2018-03-25 23:08:04 +00:00
wrapProgram $out/bin/bindgen --set LIBCLANG_PATH "${llvmPackages.clang-unwrapped.lib}/lib"
'';
2018-03-25 23:08:04 +00:00
cargoSha256 = "0bh22fkynn1z83230pbj0gg5k3948f6m0idzyqjyfg1f3qmnzdi6";
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; {
2017-07-28 10:33:03 +00:00
description = "C and C++ binding generator";
homepage = https://github.com/rust-lang-nursery/rust-bindgen;
2016-11-23 17:09:29 +00:00
license = with licenses; [ bsd3 ];
maintainers = [ maintainers.ralith ];
};
}