nixpkgs/pkgs/by-name/st/stc-cli/package.nix

25 lines
624 B
Nix
Raw Normal View History

2023-04-05 08:38:24 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "stc";
2024-10-05 05:06:54 +00:00
version = "1.5.3";
2023-04-05 08:38:24 +00:00
src = fetchFromGitHub {
owner = "tenox7";
repo = pname;
rev = version;
2024-10-05 05:06:54 +00:00
sha256 = "sha256-QdU480at8VvuHpYmEKagnBotjM7ikOsVLJeedJ2qtjw=";
2023-04-05 08:38:24 +00:00
};
2024-09-24 16:26:40 +00:00
vendorHash = "sha256-TnWCviLstm6kS34cNkrVGS9RZ21cVX/jmx8d+KytB0c=";
2023-04-05 08:38:24 +00:00
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "stc";
2023-04-05 08:38:24 +00:00
};
}