Skip to content

Commit

Permalink
sequin: init at 0.2.0 (#358034)
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover authored Nov 28, 2024
2 parents 3cb3833 + cac396d commit 49efe5e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/by-name/se/sequin/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "sequin";
version = "0.2.0";

src = fetchFromGitHub {
owner = "charmbracelet";
repo = "sequin";
rev = "refs/tags/v${version}";
hash = "sha256-uXfpsrjkJ/qdzoaJXY4vJJPEgcnH7wwFvfHskmEK5VA=";
};

vendorHash = "sha256-gdFmvLnf5xW7MKOlRueeoLDTCs7LgMtKiVHS0PAwomc=";

ldflags = [
"-X main.Version=${version}"
];

meta = {
description = "Human-readable ANSI sequences";
homepage = "https://github.com/charmbracelet/sequin";
changelog = "https://github.com/charmbracelet/sequin/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ caarlos0 ];
mainProgram = "sequin";
};
}

0 comments on commit 49efe5e

Please sign in to comment.