nixpkgs/pkgs/applications/misc/charm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
712 B
Nix
Raw Normal View History

2020-10-06 19:07:05 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "charm";
2023-02-23 19:07:46 +00:00
version = "0.12.5";
2020-10-06 19:07:05 +00:00
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "charm";
rev = "v${version}";
2023-02-23 19:07:46 +00:00
sha256 = "sha256-lTjpvh0bl4Fk+d3mcDvVQY3Ef6UYE23qoS60nltVcsU=";
2020-10-06 19:07:05 +00:00
};
2023-02-23 19:07:46 +00:00
vendorSha256 = "sha256-TNxAtx+fT6CEpa2g/tNl9sCwt3kAmNq7G870TPt2MQ4=";
2020-10-06 19:07:05 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
2020-10-06 19:07:05 +00:00
meta = with lib; {
description = "Manage your charm account on the CLI";
homepage = "https://github.com/charmbracelet/charm";
2022-05-06 16:04:41 +00:00
changelog = "https://github.com/charmbracelet/charm/releases/tag/v${version}";
2020-10-06 19:07:05 +00:00
license = licenses.mit;
maintainers = with maintainers; [ penguwin ];
};
}