summary refs log tree commit diff
path: root/pkgs/development/tools/corgi/default.nix
blob: ce003457e23d0884c54c32ffeecf6c72632869ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "corgi";
  version = "0.2.4";

  goPackagePath = "github.com/DrakeW/corgi";

  src = fetchFromGitHub {
    owner = "DrakeW";
    repo = "corgi";
    rev = "v${version}";
    sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "CLI workflow manager";
    longDescription = ''
      Corgi is a command-line tool that helps with your repetitive command usages by organizing them into reusable snippet.
    '';
    homepage = "https://github.com/DrakeW/corgi";
    license = licenses.mit;
    maintainers = with maintainers; [ kalbasit ];
  };
}