core/pkgs/by-name/ru/rust/cargo-auditable.nix

64 lines
1.8 KiB
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, buildPackages, fetchFromGitHub, fetchpatch, makeRustPlatform
, installShellFiles, stdenv }:
2024-05-02 00:46:19 +00:00
let
args = rec {
pname = "cargo-auditable";
version = "0.6.2";
src = fetchFromGitHub {
owner = "rust-secure-code";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ERIzx9Fveanq7/aWcB2sviTxIahvSu0sTwgpGf/aYE8=";
};
patches = [
(fetchpatch {
name = "rust-1.77-tests.patch";
2024-05-13 21:24:10 +00:00
url =
"https://github.com/rust-secure-code/cargo-auditable/commit/5317a27244fc428335c4e7a1d066ae0f65f0d496.patch";
2024-05-02 00:46:19 +00:00
hash = "sha256-UblGseiSC/2eE4rcnTgYzxAMrutHFSdxKTHqKj1mX5o=";
})
];
cargoHash = "sha256-4o3ctun/8VcBRuj+j0Yaawdkyn6Z6LPp+FTyhPxQWU8=";
# Cargo.lock is outdated
preConfigure = ''
cargo update --offline
'';
meta = with lib; {
description = "A tool to make production Rust binaries auditable";
mainProgram = "cargo-auditable";
homepage = "https://github.com/rust-secure-code/cargo-auditable";
2024-05-13 21:24:10 +00:00
changelog =
"https://github.com/rust-secure-code/cargo-auditable/blob/v${version}/cargo-auditable/CHANGELOG.md";
license = with licenses; [
mit # or
asl20
];
2024-05-02 00:46:19 +00:00
maintainers = with maintainers; [ figsoda ];
broken = stdenv.hostPlatform != stdenv.buildPlatform;
};
};
rustPlatform = makeRustPlatform {
inherit (buildPackages) rustc;
2024-05-13 21:24:10 +00:00
cargo = buildPackages.cargo.override { auditable = false; };
2024-05-02 00:46:19 +00:00
};
2024-05-13 21:24:10 +00:00
bootstrap = rustPlatform.buildRustPackage (args // { auditable = false; });
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
in rustPlatform.buildRustPackage.override { cargo-auditable = bootstrap; } (args
// {
nativeBuildInputs = [ installShellFiles ];
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
postInstall = ''
installManPage cargo-auditable/cargo-auditable.1
'';
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
passthru = { inherit bootstrap; };
})