1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/tools/misc/tokei/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, darwin }:
2016-07-14 09:19:20 +01:00
2017-03-22 01:04:17 +00:00
rustPlatform.buildRustPackage rec {
2019-03-30 13:46:19 +00:00
pname = "tokei";
2021-01-13 11:26:09 +00:00
version = "12.1.2";
2017-03-22 01:04:17 +00:00
src = fetchFromGitHub {
2019-03-30 13:46:19 +00:00
owner = "XAMPPRocky";
repo = pname;
2017-03-22 01:04:17 +00:00
rev = "v${version}";
2021-01-13 11:26:09 +00:00
sha256 = "sha256-jqDsxUAMD/MCCI0hamkGuCYa8rEXNZIR8S+84S8FbgI=";
2016-07-14 09:19:20 +01:00
};
2021-01-13 11:26:09 +00:00
cargoSha256 = "sha256-iUDc54E8AiLMJw9h99kg/3VmaSi8GqfQyrPwa9nJ994=";
2016-07-14 09:19:20 +01:00
buildInputs = lib.optionals stdenv.isDarwin [
libiconv darwin.apple_sdk.frameworks.Security
];
2019-04-25 04:03:16 +01: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 10:33:15 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ gebner lilyball ];
2016-07-14 09:19:20 +01:00
};
}