Merge pull request #24190 from 8573/8573/pkg/update/tokei/6.0.0/1
tokei: 4.0.0 -> 6.0.0
This commit is contained in:
commit
2cd599e5c0
pkgs/development/tools/misc/tokei
|
@ -1,16 +1,17 @@
|
||||||
{ stdenv, fetchurl, rustPlatform }:
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||||
|
|
||||||
with rustPlatform;
|
rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
buildRustPackage rec {
|
|
||||||
name = "tokei-${version}";
|
name = "tokei-${version}";
|
||||||
version = "4.0.0";
|
version = "6.0.0";
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/Aaronepower/tokei/archive/${version}.tar.gz";
|
src = fetchFromGitHub {
|
||||||
sha256 = "1c7z3dgxr76dq6cvan3hgqlkcv61gmg6fkv6b98viymh4fy9if68";
|
owner = "Aaronepower";
|
||||||
|
repo = "tokei";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1j8k2i25c989mf15jwy4a4vazjc7x7pm8zywycg8xvv4ik1im7m7";
|
||||||
};
|
};
|
||||||
|
|
||||||
depsSha256 = "0v4gplk7mkkik9vr1lqsr0yl1kqkqh14ncw95yb9iv7hcxvmcqn3";
|
depsSha256 = "184x6lwma3lawr2dcc7ivkp1j049af9w040dyzca6i56i2s9998p";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
|
Loading…
Reference in New Issue