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";
|
2018-11-27 15:30:43 +00:00
|
|
|
version = "5.0.0";
|
|
|
|
source.sha256 = "1i0a73mzcjv4mj5vjqwkrx815ydsppx3v812lxxd9mk2s7cj1vyd";
|
2016-02-21 18:22:59 +00:00
|
|
|
|
2015-01-24 22:48:30 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Upload code to https://gist.github.com (or github enterprise)";
|
2017-08-01 20:03:30 +00: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 12:24:36 +00:00
|
|
|
};
|
|
|
|
}
|