3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/cbindgen/default.nix

30 lines
792 B
Nix
Raw Normal View History

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