mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
27 lines
609 B
Nix
27 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 ];
|
|
};
|
|
}
|