Skip to content

Commit

Permalink
sequin: init at 0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <[email protected]>
  • Loading branch information
caarlos0 committed Nov 25, 2024
1 parent e87e7de commit 6d5923c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/se/sequin/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
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=";

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 6d5923c

Please sign in to comment.