mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
https://github.com/mozilla/cbindgen/blob/v0.29.4/CHANGES
(cherry picked from commit 0042d4e701)
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
cmake,
|
|
python3Packages,
|
|
|
|
# tests
|
|
firefox-unwrapped,
|
|
firefox-esr-unwrapped,
|
|
mesa,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "rust-cbindgen";
|
|
version = "0.29.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "cbindgen";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-leeHOwpzXuzg2cTjXehBnCsS+dvU4eIIFtWKeCee20U=";
|
|
};
|
|
|
|
cargoHash = "sha256-f6YoDoiVoh0BVPYHFO1FsdI4OCsF+LY72QaD57StdIQ=";
|
|
|
|
nativeCheckInputs = [
|
|
cmake
|
|
python3Packages.cython
|
|
];
|
|
|
|
checkFlags = [
|
|
# Disable tests that require rust unstable features
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
"--skip=test_expand"
|
|
"--skip=test_bitfield"
|
|
"--skip=lib_default_uses_debug_build"
|
|
"--skip=lib_explicit_debug_build"
|
|
"--skip=lib_explicit_release_build"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# WORKAROUND: test_body fails when using clang
|
|
# https://github.com/eqrion/cbindgen/issues/628
|
|
"--skip=test_body"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit
|
|
firefox-unwrapped
|
|
firefox-esr-unwrapped
|
|
mesa
|
|
;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/mozilla/cbindgen/blob/v${finalAttrs.version}/CHANGES";
|
|
description = "Project for generating C bindings from Rust code";
|
|
mainProgram = "cbindgen";
|
|
homepage = "https://github.com/mozilla/cbindgen";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ hexa ];
|
|
};
|
|
})
|