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

30 lines
792 B
Nix
Raw Normal View History

2018-10-27 10:21:15 -07:00
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
2018-05-22 06:20:53 -07:00
rustPlatform.buildRustPackage rec {
2019-08-31 04:41:23 -07:00
pname = "rust-cbindgen";
2020-08-23 22:29:51 -07:00
version = "0.14.4";
2018-05-22 06:20:53 -07:00
src = fetchFromGitHub {
owner = "eqrion";
repo = "cbindgen";
rev = "v${version}";
2020-08-23 22:29:51 -07:00
sha256 = "06bis9kk3r0gishzmsq5wk3vv8r78ggk4m800562q2yhnhc37lfd";
2018-05-22 06:20:53 -07:00
};
2020-08-23 22:29:51 -07:00
cargoSha256 = "0x8lxlik4n8rmlydcp0vqyiqwqm98cgwvw3h5hm2zviv8v0y8jnr";
2018-05-22 06:20:53 -07:00
2018-10-27 10:21:15 -07:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
checkFlags = [
# https://github.com/eqrion/cbindgen/issues/338
"--skip test_expand"
];
2019-07-13 22:52:00 -07:00
2018-05-22 06:20:53 -07:00
meta = with stdenv.lib; {
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 andir ];
2018-05-22 06:20:53 -07:00
};
}