Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-11-28 08:53:47 +01:00
112 changed files with 3712 additions and 2628 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 ];
};
}