nixpkgs/pkgs/development/libraries/cxx-rs/default.nix
Alex Wied 34e761962b cxx-rs: init at 1.0.72
This library provides a safe mechanism for calling C++ code from Rust
and Rust code from C++, not subject to the many ways that things can
go wrong when using bindgen or cbindgen to generate unsafe C-style
bindings.
2022-07-21 11:57:40 -04:00

55 lines
1.1 KiB
Nix

{ cxx-rs, fetchFromGitHub, lib, rustPlatform, testers }:
rustPlatform.buildRustPackage rec {
pname = "cxx-rs";
version = "1.0.72";
src = fetchFromGitHub {
owner = "dtolnay";
repo = "cxx";
rev = version;
sha256 = "sha256-+OumeLSgz8kLQKhEc3icCk1q+X+S7Xt+XtAlkx8iguU=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
postPatch = ''
cp ${./Cargo.lock} Cargo.lock
'';
cargoBuildFlags = [
"--workspace"
"--exclude=demo"
];
postBuild = ''
cargo doc --release
'';
cargoTestFlags = [ "--workspace" ];
outputs = [ "out" "doc" "dev" ];
postInstall = ''
mkdir -p $doc
cp -r ./target/doc/* $doc
mkdir -p $dev/include/rust
install -D -m 0644 ./include/cxx.h $dev/include/rust
'';
passthru.tests.version = testers.testVersion {
package = cxx-rs;
command = "cxxbridge --version";
};
meta = with lib; {
description = "Safe FFI between Rust and C++";
homepage = "https://github.com/dtolnay/cxx";
license = licenses.mit;
maintainers = with maintainers; [ centromere ];
};
}