nixpkgs/pkgs/tools/video/flvtool2/default.nix
Aneesh Agrawal 36f1bcbeb8 ruby treewide: don't merge source into top-level
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.
2018-01-04 02:28:33 -05:00

16 lines
401 B
Nix

{ buildRubyGem, lib, ruby_2_2 }:
buildRubyGem rec {
ruby = ruby_2_2;
name = "${gemName}-${version}";
gemName = "flvtool2";
version = "1.0.6";
source.sha256 = "0xsla1061pi4ryh3jbvwsbs8qchprchbqjy7652g2g64v37i74qj";
meta = {
homepage = https://github.com/unnu/flvtool2;
description = "A tool to manipulate Macromedia Flash Video files";
platforms = ruby.meta.platforms;
};
}