Almost working version

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2025-03-03 16:36:44 +01:00
parent 8bff2cf4cc
commit 72fd03a4df
5 changed files with 2533 additions and 6 deletions

View file

@ -0,0 +1,61 @@
{
pkgs,
craneLib,
pkg-config,
openssl,
util-linux,
cargo-dylint,
}:
let
pname = "cargo-dylint-general";
version = "4.0.0";
src = pkgs.fetchFromGitHub {
owner = "trailofbits";
repo = "dylint";
tag = "v${version}";
sha256 = "sha256-Z8uuewp7Buoadayc0oTafmfvwNT36KukWKiHxL/mQfI=";
};
commonArgs = {
inherit pname version;
src = src;
patches = [ ./cargo-dylint-general-ignore-home.patch ];
strictDeps = true;
buildInputs = [ openssl ];
nativeBuildInputs = [
pkg-config
cargo-dylint
];
cargoVendorDir = craneLib.vendorCargoDeps { cargoLock = ./cargo-dylint-general-Cargo.lock; };
preBuild = ''
cd examples/general
'';
RUSTUP_TOOLCHAIN = "nightly-nix";
};
in
craneLib.buildPackage (
commonArgs
// {
cargoArtifacts = null;
doCheck = false;
postFixup = ''
${util-linux}/bin/rename .so @$RUSTUP_TOOLCHAIN.so $out/lib/*.so
'';
doNotRemoveReferencesToRustToolchain = true;
}
)