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

28 lines
732 B
Nix
Raw Normal View History

2016-02-21 18:22:59 +00:00
{ buildRubyGem, lib, ruby, makeWrapper }:
buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "gist";
version = "4.5.0";
sha256 = "0k9bgjdmnr14whmjx6c8d5ak1dpazirj96hk5ds69rl5d9issw0l";
buildInputs = [ makeWrapper ];
postInstall = ''
# Fix the default ruby wrapper
makeWrapper $out/${ruby.gemPath}/bin/gist $out/bin/gist \
--set GEM_PATH $out/${ruby.gemPath}:${ruby}/${ruby.gemPath}
'';
dontStrip = true;
2015-01-24 22:48:30 +00:00
meta = with lib; {
2014-10-08 12:24:36 +00:00
description = "upload code to https://gist.github.com (or github enterprise)";
2016-02-21 18:22:59 +00:00
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
};
}