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

18 lines
482 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";
2020-09-15 22:41:47 +00: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; {
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
};
}