summary refs log tree commit diff
path: root/pkgs/tools/text/gist/default.nix
blob: 7091031d28f0d49a7164e5a85a29129d31000166 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildRubyGem, lib, ruby }:

buildRubyGem rec {
  inherit ruby;
  name = "${gemName}-${version}";
  gemName = "gist";
  version = "5.0.0";
  source.sha256 = "1i0a73mzcjv4mj5vjqwkrx815ydsppx3v812lxxd9mk2s7cj1vyd";

  meta = with lib; {
    description = "Upload code to https://gist.github.com (or github enterprise)";
    homepage = http://defunkt.io/gist/;
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
    platforms = ruby.meta.platforms;
  };
}