3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/cargo-llvm-lines/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
660 B
Nix
Raw Normal View History

2021-09-19 18:25:51 +01:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "cargo-llvm-lines";
2022-03-04 02:22:05 +00:00
version = "0.4.14";
2021-09-19 18:25:51 +01:00
src = fetchFromGitHub {
owner = "dtolnay";
repo = pname;
rev = version;
2022-03-04 02:22:05 +00:00
sha256 = "sha256-ooFkw6QlMnlvyHPMkqAZUDaOHH8dktzbob5WevQsYXQ=";
2021-09-19 18:25:51 +01:00
};
2022-03-04 02:22:05 +00:00
cargoSha256 = "sha256-MgtFNrSjSvyjp1uD/OueSh+MCYSvZCyDabP20pI/8HI=";
2021-09-19 18:25:51 +01:00
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 ];
};
}