{ lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "cargo-llvm-lines"; version = "0.4.19"; src = fetchFromGitHub { owner = "dtolnay"; repo = pname; rev = version; sha256 = "sha256-W8y7HENOmCqlhgD5r0pT4fIzxKkW/yIpLgkx/3PzvZI="; }; cargoSha256 = "sha256-TXwxFrEUVK8caw/MXa7vtb4SSjsYTZN2PAf/T4K7qL4="; meta = with lib; { description = "Count the number of lines of LLVM IR across all instantiations of a generic function"; homepage = "https://github.com/dtolnay/cargo-llvm-lines"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ figsoda ]; }; }