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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
698 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2018-08-30 07:20:40 +00:00
buildGoPackage rec {
2022-02-01 22:01:51 +00:00
pname = "corgi";
version = "0.2.4";
2018-08-30 07:20:40 +00:00
goPackagePath = "github.com/DrakeW/corgi";
src = fetchFromGitHub {
owner = "DrakeW";
repo = "corgi";
2022-02-01 22:01:51 +00:00
rev = "v${version}";
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 ];
};
}