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

30 lines
790 B
Nix
Raw Normal View History

2018-10-27 17:21:15 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
2018-05-22 13:20:53 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "rust-cbindgen";
version = "0.13.1";
2018-05-22 13:20:53 +00:00
src = fetchFromGitHub {
owner = "eqrion";
repo = "cbindgen";
rev = "v${version}";
sha256 = "1x21g66gri6z9bnnfn7zmnf2lwdf5ing76pcmw0ilx4nzpvfhkg0";
2018-05-22 13:20:53 +00:00
};
cargoSha256 = "13fbahdih5whll09pfgyb1bjag1f0d0xfwgm2s342bs1krxsrbh3";
2018-05-22 13:20:53 +00:00
2018-10-27 17:21:15 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
checkFlags = [
# https://github.com/eqrion/cbindgen/issues/338
"--skip test_expand"
];
2019-07-14 05:52:00 +00:00
2018-05-22 13:20:53 +00:00
meta = with stdenv.lib; {
description = "A project for generating C bindings from Rust code";
homepage = https://github.com/eqrion/cbindgen;
2018-05-22 13:20:53 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ jtojnar andir ];
2018-05-22 13:20:53 +00:00
};
}