Unverified Commit dae1b32a authored by Ilan Joselevich's avatar Ilan Joselevich Committed by GitHub
Browse files

Merge pull request #233302 from figsoda/lwc

lwc: init at unstable-2022-07-26
parents 74275250 e1f0e2f0
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "lwc";
  version = "unstable-2022-07-26";

  src = fetchFromGitHub {
    owner = "timdp";
    repo = "lwc";
    rev = "3330928c9d82200837350f85335f5e6c09f0658b";
    hash = "sha256-HFuXA5Y274XtgqG9odDAg9SSCgUxprnojfGavnYW4LE=";
  };

  vendorHash = "sha256-av736cW0bPsGQV+XFL/q6p/9VhjOeDwkiK5DLRnRtUg=";

  ldflags = [
    "-s"
    "-w"
    "-X=main.version=${src.rev}"
  ];

  meta = with lib; {
    description = "A live-updating version of the UNIX wc command";
    homepage = "https://github.com/timdp/lwc";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9904,6 +9904,8 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) CoreText;
  };
  lwc = callPackage ../tools/misc/lwc { };
  lxc = callPackage ../os-specific/linux/lxc {
    autoreconfHook = buildPackages.autoreconfHook269;
  };