depot/third_party/nixpkgs/pkgs/by-name/st/stc-cli/package.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

24 lines
624 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "stc";
version = "1.5.3";
src = fetchFromGitHub {
owner = "tenox7";
repo = pname;
rev = version;
sha256 = "sha256-QdU480at8VvuHpYmEKagnBotjM7ikOsVLJeedJ2qtjw=";
};
vendorHash = "sha256-TnWCviLstm6kS34cNkrVGS9RZ21cVX/jmx8d+KytB0c=";
meta = with lib; {
description = "Syncthing CLI Tool";
homepage = "https://github.com/tenox7/stc";
changelog = "https://github.com/tenox7/stc/releases/tag/${version}";
license = licenses.asl20;
maintainers = [ maintainers.ivankovnatsky ];
mainProgram = "stc";
};
}