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

25 lines
693 B
Nix
Raw Normal View History

2018-10-27 18:21:15 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
2018-05-22 15:20:53 +02:00
rustPlatform.buildRustPackage rec {
name = "rust-cbindgen-${version}";
2018-10-19 22:47:58 +03:00
version = "0.6.3";
2018-05-22 15:20:53 +02:00
src = fetchFromGitHub {
owner = "eqrion";
repo = "cbindgen";
rev = "v${version}";
2018-10-19 22:47:58 +03:00
sha256 = "18lvvzksc7gfx8fffpil41phjzwdc67xfh0mijkkv4zchwlqkpq2";
2018-05-22 15:20:53 +02:00
};
2018-10-19 22:47:58 +03:00
cargoSha256 = "1m1chwmfgj74xrmn4gb9yz5kx8c408a1hlqmpcq780kqj0k927i9";
2018-05-22 15:20:53 +02:00
2018-10-27 18:21:15 +01:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
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;
maintainers = with maintainers; [ jtojnar ];
};
}