28 lines
609 B
Nix
28 lines
609 B
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
buildGoModule,
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "meteor-git";
|
||
|
version = "0.23.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "stefanlogue";
|
||
|
repo = "meteor";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-APsP9kzO5QMCgqIaMF01/NB3bT17gNNFZ1mxFThfvgQ=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-jKd/eJwp5SZvTrP3RN7xT7ibAB0PQondGR3RT+HQXIo=";
|
||
|
|
||
|
meta = {
|
||
|
description = "CLI tool for writing conventional commits";
|
||
|
mainProgram = "meteor";
|
||
|
homepage = "https://github.com/stefanlogue/meteor";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ nebunebu ];
|
||
|
};
|
||
|
}
|