nixpkgs/pkgs/development/tools/github/github-release/default.nix

30 lines
907 B
Nix
Raw Normal View History

{ buildGoPackage, fetchFromGitHub, lib }:
2015-09-07 17:35:21 +00:00
buildGoPackage rec {
pname = "github-release";
version = "0.10.0";
2015-09-07 17:35:21 +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
};
goPackagePath = "github.com/github-release/github-release";
2015-09-07 17:35:21 +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;
homepage = "https://github.com/github-release/github-release";
maintainers = with maintainers; [ ardumont j03 ];
platforms = with platforms; unix;
2015-09-07 17:35:21 +00:00
};
}