Loading pkgs/development/tools/misc/tokei/default.nix 0 → 100644 +26 −0 Original line number Diff line number Diff line { stdenv, fetchurl, rustPlatform }: with rustPlatform; buildRustPackage rec { name = "tokei-${version}"; version = "3.0.0"; src = fetchurl { url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz"; sha256 = "0xymz52gpasihzhxglzx4wh0312zkraxy4yrpxz694zalf2s5vj5"; }; depsSha256 = "1syx8qzjn357dk2bf4ndmgc4zvrglmw88qiw117h6s511qyz8z0z"; installPhase = '' mkdir -p $out/bin cp -p target/release/tokei $out/bin/ ''; meta = with stdenv.lib; { description = "Count code, quickly"; homepage = https://github.com/Aaronepower/tokei; license = licenses.mit; maintainers = with maintainers; [ gebner ]; }; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3666,6 +3666,8 @@ in toilet = callPackage ../tools/misc/toilet { }; tokei = callPackage ../development/tools/misc/tokei { }; tor = callPackage ../tools/security/tor { }; tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; Loading Loading
pkgs/development/tools/misc/tokei/default.nix 0 → 100644 +26 −0 Original line number Diff line number Diff line { stdenv, fetchurl, rustPlatform }: with rustPlatform; buildRustPackage rec { name = "tokei-${version}"; version = "3.0.0"; src = fetchurl { url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz"; sha256 = "0xymz52gpasihzhxglzx4wh0312zkraxy4yrpxz694zalf2s5vj5"; }; depsSha256 = "1syx8qzjn357dk2bf4ndmgc4zvrglmw88qiw117h6s511qyz8z0z"; installPhase = '' mkdir -p $out/bin cp -p target/release/tokei $out/bin/ ''; meta = with stdenv.lib; { description = "Count code, quickly"; homepage = https://github.com/Aaronepower/tokei; license = licenses.mit; maintainers = with maintainers; [ gebner ]; }; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3666,6 +3666,8 @@ in toilet = callPackage ../tools/misc/toilet { }; tokei = callPackage ../development/tools/misc/tokei { }; tor = callPackage ../tools/security/tor { }; tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; Loading