36f1bcbeb8
Keep the `source` attrset distinct to prevent its entries from merging with the top level attrs. Since each type of source has a different set of entries for `source`, this is the easiest way to keep them together. This will pave the way for a new `url` type of source. This is a mass-rebuild of many ruby packages, notably those using `git` type sources.
28 lines
737 B
Nix
28 lines
737 B
Nix
{ buildRubyGem, lib, ruby, makeWrapper }:
|
|
|
|
buildRubyGem rec {
|
|
inherit ruby;
|
|
name = "${gemName}-${version}";
|
|
gemName = "gist";
|
|
version = "4.6.1";
|
|
source.sha256 = "16qvmn7syvcf4lnblngzvq8xynvb62h1xhfc7xfb0c1sjh166hff";
|
|
|
|
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;
|
|
|
|
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;
|
|
};
|
|
}
|