2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-08-30 00:20:40 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "corgi-${rev}";
|
2018-11-16 22:36:38 -08:00
|
|
|
rev = "v0.2.4";
|
2018-08-30 00:20:40 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/DrakeW/corgi";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-16 22:36:38 -08:00
|
|
|
inherit rev;
|
|
|
|
|
2018-08-30 00:20:40 -07:00
|
|
|
owner = "DrakeW";
|
|
|
|
repo = "corgi";
|
2018-11-16 22:36:38 -08:00
|
|
|
sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn";
|
2018-08-30 00:20:40 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2018-08-30 00:20:40 -07:00
|
|
|
description = "CLI workflow manager";
|
|
|
|
longDescription = ''
|
|
|
|
Corgi is a command-line tool that helps with your repetitive command usages by organizing them into reusable snippet.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/DrakeW/corgi";
|
2018-08-30 00:20:40 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
};
|
|
|
|
}
|