2021-02-24 20:48:14 +00:00
|
|
|
{ buildGoPackage, fetchFromGitHub, lib }:
|
2015-09-07 17:35:21 +00:00
|
|
|
|
2021-02-24 20:48:14 +00:00
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "github-release";
|
|
|
|
version = "0.10.0";
|
2015-09-07 17:35:21 +00:00
|
|
|
|
2021-02-24 20:48:14 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "github-release";
|
|
|
|
repo = "github-release";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-J5Y0Kvon7DstTueCsoYvw6x4cOH/C1IaVArE0bXtZts=";
|
2015-09-07 17:35:21 +00:00
|
|
|
};
|
|
|
|
|
2021-02-24 20:48:14 +00:00
|
|
|
goPackagePath = "github.com/github-release/github-release";
|
2015-09-07 17:35:21 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2015-09-07 17:35:21 +00:00
|
|
|
description = "Commandline app to create and edit releases on Github (and upload artifacts)";
|
|
|
|
longDescription = ''
|
|
|
|
A small commandline app written in Go that allows you to easily create and
|
|
|
|
delete releases of your projects on Github.
|
|
|
|
In addition it allows you to attach files to those releases.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = licenses.mit;
|
2021-02-24 20:48:14 +00:00
|
|
|
homepage = "https://github.com/github-release/github-release";
|
|
|
|
maintainers = with maintainers; [ ardumont j03 ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2015-09-07 17:35:21 +00:00
|
|
|
};
|
|
|
|
}
|