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