2018-10-27 19:21:15 +02:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2018-05-22 15:20:53 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "rust-cbindgen";
|
2020-02-10 16:20:57 +01:00
|
|
|
version = "0.13.1";
|
2018-05-22 15:20:53 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2020-02-10 16:20:57 +01:00
|
|
|
sha256 = "1x21g66gri6z9bnnfn7zmnf2lwdf5ing76pcmw0ilx4nzpvfhkg0";
|
2018-05-22 15:20:53 +02:00
|
|
|
};
|
|
|
|
|
2020-02-14 03:00:26 +01:00
|
|
|
# Delete this on next update; see #79975 for details
|
|
|
|
legacyCargoFetcher = true;
|
|
|
|
|
2020-02-10 16:20:57 +01:00
|
|
|
cargoSha256 = "13fb8cdg6r0g5jb3vaznvv5aaywrnsl2yp00h4k8028vl8jwwr79";
|
2018-05-22 15:20:53 +02:00
|
|
|
|
2018-10-27 19:21:15 +02:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
2019-07-25 12:34:44 +02:00
|
|
|
checkFlags = [
|
|
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
|
|
"--skip test_expand"
|
|
|
|
];
|
2019-07-14 07:52:00 +02:00
|
|
|
|
2018-05-22 15:20:53 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A project for generating C bindings from Rust code";
|
|
|
|
homepage = https://github.com/eqrion/cbindgen;
|
|
|
|
license = licenses.mpl20;
|
2019-02-28 20:42:44 +01:00
|
|
|
maintainers = with maintainers; [ jtojnar andir ];
|
2018-05-22 15:20:53 +02:00
|
|
|
};
|
|
|
|
}
|