Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildRubyGem, lib, ruby }: 2 3buildRubyGem rec { 4 inherit ruby; 5 name = "${gemName}-${version}"; 6 gemName = "gist"; 7 version = "6.0.0"; 8 source.sha256 = "0qnd1jqd7b04871v4l73grcmi7c0pivm8nsfrqvwivm4n4b3c2hd"; 9 10 meta = with lib; { 11 description = "Upload code to https://gist.github.com (or github enterprise)"; 12 homepage = "http://defunkt.io/gist/"; 13 license = licenses.mit; 14 maintainers = with maintainers; [ zimbatm ]; 15 platforms = ruby.meta.platforms; 16 }; 17}