2018-10-27 10:21:15 -07:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2018-05-22 06:20:53 -07:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "rust-cbindgen-${version}";
|
2019-04-14 03:21:59 -07:00
|
|
|
version = "0.8.3";
|
2018-05-22 06:20:53 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2019-04-14 03:21:59 -07:00
|
|
|
sha256 = "08zlnk1k1nddjciccfdcplxqngsnz6ml3zxm57mijabzybry8zz1";
|
2018-05-22 06:20:53 -07:00
|
|
|
};
|
|
|
|
|
2019-02-28 11:42:04 -08:00
|
|
|
cargoSha256 = "00j5nm491zil6kpjns31qyd6z7iqd77b5qp4h7149s70qjwfq2cb";
|
2018-05-22 06:20:53 -07:00
|
|
|
|
2018-10-27 10:21:15 -07:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
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;
|
|
|
|
license = licenses.mpl20;
|
2019-02-28 11:42:44 -08:00
|
|
|
maintainers = with maintainers; [ jtojnar andir ];
|
2018-05-22 06:20:53 -07:00
|
|
|
};
|
|
|
|
}
|