nixpkgs/pkgs/development/tools/corgi/default.nix

29 lines
694 B
Nix
Raw Normal View History

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