2020-11-27 13:50:45 +01:00
|
|
|
{ rustPlatform, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "uwc";
|
2023-08-14 05:09:44 +02:00
|
|
|
version = "1.0.5";
|
2020-11-27 13:50:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "dead10ck";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-08-14 05:09:44 +02:00
|
|
|
hash = "sha256-x2mijB1GkxdraFroG1+PiBzWKPjsaAeoDt0HFL2v93I=";
|
2020-11-27 13:50:45 +01:00
|
|
|
};
|
|
|
|
|
2023-08-14 05:09:44 +02:00
|
|
|
cargoHash = "sha256-0IvOaQaXfdEz5tlXh5gTbnZG9QZSWDVHGOqYq8aWOIc=";
|
2020-11-27 13:50:45 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Like wc, but unicode-aware, and with per-line mode";
|
|
|
|
homepage = "https://gitlab.com/dead10ck/uwc";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ShamrockLee ];
|
|
|
|
};
|
|
|
|
}
|