ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / me / meteor-git / package.nix
blob0f922c2dfcac02d84ab8a826ff9b34af5be2ca23
2   lib,
3   fetchFromGitHub,
4   buildGoModule,
5 }:
7 buildGoModule rec {
8   pname = "meteor-git";
9   version = "0.23.1";
11   src = fetchFromGitHub {
12     owner = "stefanlogue";
13     repo = "meteor";
14     rev = "v${version}";
15     hash = "sha256-APsP9kzO5QMCgqIaMF01/NB3bT17gNNFZ1mxFThfvgQ=";
16   };
18   vendorHash = "sha256-jKd/eJwp5SZvTrP3RN7xT7ibAB0PQondGR3RT+HQXIo=";
20   meta = {
21     description = "CLI tool for writing conventional commits";
22     mainProgram = "meteor";
23     homepage = "https://github.com/stefanlogue/meteor";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ nebunebu ];
26   };