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

39 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, python3Packages, Security }:
2018-05-22 06:20:53 -07:00
rustPlatform.buildRustPackage rec {
2019-08-31 04:41:23 -07:00
pname = "rust-cbindgen";
2021-03-15 11:00:31 -07:00
version = "0.18.0";
2018-05-22 06:20:53 -07:00
src = fetchFromGitHub {
owner = "eqrion";
repo = "cbindgen";
rev = "v${version}";
2021-03-15 11:00:31 -07:00
sha256 = "sha256-S3t1hv/mRn6vwyzT78DPIacqiJV3CnjGdOKsdSyYs8g=";
2018-05-22 06:20:53 -07:00
};
2021-04-30 02:19:08 -07:00
cargoSha256 = "1ycvbdgd50l1nahq63zi9yp3793smkswlwhsqjrmws5b1fqzv9w0";
2018-05-22 06:20:53 -07:00
buildInputs = lib.optional stdenv.isDarwin Security;
2018-10-27 10:21:15 -07:00
checkInputs = [
python3Packages.cython
];
checkFlags = [
# Disable tests that require rust unstable features
# https://github.com/eqrion/cbindgen/issues/338
"--skip test_expand"
"--skip test_bitfield"
"--skip lib_default_uses_debug_build"
"--skip lib_explicit_debug_build"
"--skip lib_explicit_release_build"
];
2019-07-13 22:52:00 -07:00
meta = with lib; {
2018-05-22 06:20:53 -07:00
description = "A project for generating C bindings from Rust code";
homepage = "https://github.com/eqrion/cbindgen";
2018-05-22 06:20:53 -07:00
license = licenses.mpl20;
maintainers = with maintainers; [ jtojnar ];
2018-05-22 06:20:53 -07:00
};
}