mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, rustPlatform
|
||
|
, pkg-config
|
||
|
, installShellFiles
|
||
|
, openssl
|
||
|
, nix-update-script
|
||
|
}:
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "cargo-asm";
|
||
|
version = "0.1.24";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pacak";
|
||
|
repo = "cargo-show-asm";
|
||
|
rev = version;
|
||
|
hash = "sha256-ahkKUtg5M88qddzEwYxPecDtBofGfPVxKuYKgmsbWYc=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-S7OpHNjiTfQg7aPmHEx6Q/OV5QA9pB29F3MTIeiLAXg=";
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config installShellFiles ];
|
||
|
buildInputs = [ openssl ];
|
||
|
|
||
|
postInstall = ''
|
||
|
installShellCompletion --cmd foobar \
|
||
|
--bash <($out/bin/cargo-asm --bpaf-complete-style-bash) \
|
||
|
--fish <($out/bin/cargo-asm --bpaf-complete-style-fish) \
|
||
|
--zsh <($out/bin/cargo-asm --bpaf-complete-style-zsh )
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = nix-update-script {
|
||
|
attrPath = pname;
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Cargo subcommand showing the assembly, LLVM-IR and MIR generated for Rust code";
|
||
|
homepage = "https://github.com/pacak/cargo-show-asm";
|
||
|
license = with licenses; [ asl20 mit ];
|
||
|
maintainers = with maintainers; [ oxalica ];
|
||
|
broken = stdenv.isDarwin; # FIXME: Seems to have issue compiling bundled curl.
|
||
|
};
|
||
|
}
|