lwc: add liberodark to maintainers (#458423)

This commit is contained in:
Fernando Rodrigues
2025-11-05 09:17:49 +00:00
committed by GitHub
+6 -7
View File
@@ -4,7 +4,7 @@
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "lwc";
version = "unstable-2022-07-26";
@@ -19,15 +19,14 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X=main.version=${src.rev}"
"-X=main.version=${finalAttrs.src.rev}"
];
meta = with lib; {
meta = {
description = "Live-updating version of the UNIX wc command";
homepage = "https://github.com/timdp/lwc";
license = licenses.mit;
maintainers = [ ];
maintainers = with lib.maintainers; [ liberodark ];
license = lib.licenses.mit;
mainProgram = "lwc";
};
}
})