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 18:09:29 +01:00
# Future work: Automatically communicate NIX_CFLAGS_COMPILE to bindgen's tests and the bindgen executable itself.
2017-03-22 03:00:11 +01:00
rustPlatform.buildRustPackage rec {
2016-11-23 18:09:29 +01:00
name = "rust-bindgen-${version}";
2017-07-28 12:33:03 +02:00
version = "0.29.0";
2016-11-23 18:09:29 +01:00
src = fetchFromGitHub {
2017-07-28 12:33:03 +02:00
owner = "rust-lang-nursery";
2016-11-23 18:09:29 +01:00
repo = "rust-bindgen";
2017-03-22 03:00:11 +01:00
rev = "v${version}";
2017-07-28 12:33:03 +02:00
sha256 = "190nilbqch8w2hcdmzgkk2npgsn49a4y9c5r0mxa9d7nz7h0imxk";
2016-11-23 18:09:29 +01:00
};
nativeBuildInputs = [ makeWrapper ];
2016-11-23 18:09:29 +01: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-28 12:33:03 +02:00
depsSha256 = "1y55xdqsk200hj5dhbigsgsx11w5cfxms84hhyl9y7w6jszbzxzw";
2016-11-23 18:09:29 +01:00
doCheck = false; # A test fails because it can't find standard headers in NixOS
meta = with stdenv.lib; {
2017-07-28 12:33:03 +02:00
description = "C and C++ binding generator";
homepage = https://github.com/rust-lang-nursery/rust-bindgen;
2016-11-23 18:09:29 +01:00
license = with licenses; [ bsd3 ];
maintainers = [ maintainers.ralith ];
};
}