nixpkgs/pkgs/tools/text/uwc/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

25 lines
626 B
Nix

{ rustPlatform, lib, fetchFromGitLab }:
rustPlatform.buildRustPackage rec {
pname = "uwc";
version = "1.0.5";
src = fetchFromGitLab {
owner = "dead10ck";
repo = pname;
rev = "v${version}";
hash = "sha256-x2mijB1GkxdraFroG1+PiBzWKPjsaAeoDt0HFL2v93I=";
};
cargoHash = "sha256-0IvOaQaXfdEz5tlXh5gTbnZG9QZSWDVHGOqYq8aWOIc=";
doCheck = true;
meta = with lib; {
description = "Like wc, but unicode-aware, and with per-line mode";
mainProgram = "uwc";
homepage = "https://gitlab.com/dead10ck/uwc";
license = licenses.mit;
maintainers = with maintainers; [ ShamrockLee ];
};
}