1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/rust/cbindgen/default.nix

28 lines
773 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 {
name = "rust-cbindgen-${version}";
2019-07-14 06:52:00 +01:00
version = "0.8.7";
2018-05-22 14:20:53 +01:00
src = fetchFromGitHub {
owner = "eqrion";
repo = "cbindgen";
rev = "v${version}";
2019-07-14 06:52:00 +01:00
sha256 = "040rivayr0dgmrhlly5827c850xbr0j5ngiy6rvwyba5j9iv2x0y";
2018-05-22 14:20:53 +01:00
};
cargoSha256 = "1nig4891p7ii4z4f4j4d4pxx39f501g7yrsygqbpkr1nrgjip547";
2018-05-22 14:20:53 +01:00
2018-10-27 18:21:15 +01:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
2019-07-14 06:52:00 +01:00
# https://github.com/eqrion/cbindgen/issues/338
RUSTC_BOOTSTRAP = 1;
2018-05-22 14:20:53 +01:00
meta = with stdenv.lib; {
description = "A project for generating C bindings from Rust code";
homepage = https://github.com/eqrion/cbindgen;
license = licenses.mpl20;
maintainers = with maintainers; [ jtojnar andir ];
2018-05-22 14:20:53 +01:00
};
}