Merge pull request #105144 from ShamrockLee/uwc

uwc: Init at 1.0.4
This commit is contained in:
Sandro 2020-11-27 22:58:54 +01:00 committed by GitHub
commit 54dd8fb5bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ rustPlatform, lib, fetchFromGitLab }:
rustPlatform.buildRustPackage rec {
pname = "uwc";
version = "1.0.4";
src = fetchFromGitLab {
owner = "dead10ck";
repo = pname;
rev = "v${version}";
sha256 = "1ywqq9hrrm3frvd2sswknxygjlxi195kcy7g7phwq63j7hkyrn50";
};
cargoSha256 = "0ra62cf75b1c4knxxpbdg8m0sy2k02r52j606fp5l9crp0fml8l0";
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 ];
};
}

View file

@ -7909,6 +7909,8 @@ in
usync = callPackage ../applications/misc/usync { };
uwc = callPackage ../tools/text/uwc { };
uwsgi = callPackage ../servers/uwsgi { };
v2ray = callPackage ../tools/networking/v2ray { };