2018-08-30 08:20:40 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "corgi-${rev}";
|
2018-11-17 06:36:38 +00:00
|
|
|
rev = "v0.2.4";
|
2018-08-30 08:20:40 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/DrakeW/corgi";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-17 06:36:38 +00:00
|
|
|
inherit rev;
|
|
|
|
|
2018-08-30 08:20:40 +01:00
|
|
|
owner = "DrakeW";
|
|
|
|
repo = "corgi";
|
2018-11-17 06:36:38 +00:00
|
|
|
sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn";
|
2018-08-30 08:20:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = with stdenv.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;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
};
|
|
|
|
}
|