nixpkgs/pkgs/tools/text/gist/default.nix

18 lines
480 B
Nix
Raw Normal View History

{ buildRubyGem, lib, ruby }:
2016-02-21 18:22:59 +00:00
buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "gist";
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; {
description = "Upload code to https://gist.github.com (or github enterprise)";
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
};
}