nixpkgs/pkgs/development/tools/misc/tokei/default.nix

33 lines
1,022 B
Nix
Raw Normal View History

2021-02-12 02:54:10 +01:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }:
2016-07-14 10:19:20 +02:00
2017-03-22 02:04:17 +01:00
rustPlatform.buildRustPackage rec {
2019-03-30 14:46:19 +01:00
pname = "tokei";
2021-01-13 12:26:09 +01:00
version = "12.1.2";
2017-03-22 02:04:17 +01:00
src = fetchFromGitHub {
2019-03-30 14:46:19 +01:00
owner = "XAMPPRocky";
repo = pname;
2017-03-22 02:04:17 +01:00
rev = "v${version}";
2021-01-13 12:26:09 +01:00
sha256 = "sha256-jqDsxUAMD/MCCI0hamkGuCYa8rEXNZIR8S+84S8FbgI=";
2016-07-14 10:19:20 +02:00
};
cargoSha256 = "sha256-U7Bode8qwDsNf4FVppfEHA9uiOFz74CtKgXG6xyYlT8=";
2016-07-14 10:19:20 +02:00
buildInputs = lib.optionals stdenv.isDarwin [
2021-02-12 02:54:10 +01:00
libiconv Security
];
2019-04-25 05:03:16 +02:00
# enable all output formats
cargoBuildFlags = [ "--features" "all" ];
meta = with lib; {
description = "A program that allows you to count your code, quickly";
longDescription = ''
Tokei is a program that displays statistics about your code. Tokei will show number of files, total lines within those files and code, comments, and blanks grouped by language.
'';
homepage = "https://github.com/XAMPPRocky/tokei";
2018-01-15 11:33:15 +01:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ gebner lilyball ];
2016-07-14 10:19:20 +02:00
};
}