mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
e594a0fc14
This fixes the following error: ... cargo-auditable> Doc-tests auditable-extract cargo-auditable> error: doctest failed, to rerun pass `-p auditable-extract --doc` cargo-auditable> cargo-auditable> Caused by: cargo-auditable> could not execute process `rustdoc --edition=2018 --crate-type lib --crate-name auditable_extract --test /build/source/auditable-extract/src/lib.rs --target x86_64-unknown-linux-gnu -L dependency=/build/source/target/x86_64-unknown-linux-gnu/release/deps -L dependency=/build/source/target/release/deps --test-args --test-threads=96 --extern auditable_extract=/build/source/target/x86_64-unknown-linux-gnu/release/deps/libauditable_extract-dd1904617e4b78db.rlib --extern binfarce=/build/source/target/x86_64-unknown-linux-gnu/release/deps/libbinfarce-2ba09d21aed0de1a.rlib -C embed-bitcode=no --error-format human` (never executed) cargo-auditable> cargo-auditable> Caused by: cargo-auditable> No such file or directory (os error 2) Tested with lanzaboote
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, buildPackages, fetchFromGitHub, makeRustPlatform, installShellFiles, stdenv }:
|
|
|
|
let
|
|
args = rec {
|
|
pname = "cargo-auditable";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rust-secure-code";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-MKMPLv8jeST0l4tq+MMPC18qfZMmBixdj6Ng19YKepU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-6/f7pNaTL+U6bI6jMakU/lfwYYxN/EM3WkKZcydsyLk=";
|
|
|
|
# Cargo.lock is outdated
|
|
preConfigure = ''
|
|
cargo update --offline
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool to make production Rust binaries auditable";
|
|
homepage = "https://github.com/rust-secure-code/cargo-auditable";
|
|
changelog = "https://github.com/rust-secure-code/cargo-auditable/blob/v${version}/cargo-auditable/CHANGELOG.md";
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
broken = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
};
|
|
};
|
|
|
|
rustPlatform = makeRustPlatform {
|
|
inherit (buildPackages) rustc;
|
|
cargo = buildPackages.cargo.override {
|
|
auditable = false;
|
|
};
|
|
};
|
|
|
|
bootstrap = rustPlatform.buildRustPackage (args // {
|
|
auditable = false;
|
|
});
|
|
in
|
|
|
|
rustPlatform.buildRustPackage.override { cargo-auditable = bootstrap; } (args // {
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage cargo-auditable/cargo-auditable.1
|
|
'';
|
|
|
|
passthru = {
|
|
inherit bootstrap;
|
|
};
|
|
})
|