mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
29 lines
732 B
Nix
29 lines
732 B
Nix
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||
|
|
||
|
buildGoPackage rec {
|
||
|
name = "corgi-${rev}";
|
||
|
rev = "v0.2.3";
|
||
|
|
||
|
goPackagePath = "github.com/DrakeW/corgi";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "DrakeW";
|
||
|
repo = "corgi";
|
||
|
inherit rev;
|
||
|
sha256 = "0ahwpyd6dac04qw2ak51xfbwkr42sab1gkhh52i7hlcy12jpwl8q";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|