lwc: cleanup

This commit is contained in:
liberodark
2025-11-05 10:11:54 +01:00
parent 394be911fa
commit 98813fb623
+5 -6
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 = [ ];
license = lib.licenses.mit;
mainProgram = "lwc";
};
}
})