2018-11-27 15:30:43 +00:00
|
|
|
{ buildRubyGem, lib, ruby }:
|
2016-02-21 18:22:59 +00:00
|
|
|
|
|
|
|
buildRubyGem rec {
|
|
|
|
inherit ruby;
|
|
|
|
name = "${gemName}-${version}";
|
|
|
|
gemName = "gist";
|
2020-09-15 23:41:47 +01:00
|
|
|
version = "6.0.0";
|
|
|
|
source.sha256 = "0qnd1jqd7b04871v4l73grcmi7c0pivm8nsfrqvwivm4n4b3c2hd";
|
2016-02-21 18:22:59 +00:00
|
|
|
|
2015-01-24 22:48:30 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Upload code to https://gist.github.com (or github enterprise)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://defunkt.io/gist/";
|
2015-01-24 22:48:30 +00:00
|
|
|
license = licenses.mit;
|
2016-02-21 18:22:59 +00:00
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
platforms = ruby.meta.platforms;
|
2014-10-08 13:24:36 +01:00
|
|
|
};
|
|
|
|
}
|