nixpkgs/pkgs/development/libraries/cxx-rs/default.nix
2023-01-13 16:23:20 -05:00

55 lines
1.1 KiB
Nix

{ cxx-rs, fetchFromGitHub, lib, rustPlatform, testers }:
rustPlatform.buildRustPackage rec {
pname = "cxx-rs";
version = "1.0.86";
src = fetchFromGitHub {
owner = "dtolnay";
repo = "cxx";
rev = version;
sha256 = "sha256-bysuvCapesU/HaNfTfMUas7g3clf8299HmCChpd7abY=";
};
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 ];
};
}