nixpkgs/pkgs/tools/video/flvtool2/default.nix
zimbatm 74c69387db flvtool2: fix installation
The rubygems.org source doesn't exist anymore. It was also depending on ruby
1.8 to work correctly.
2016-03-08 10:55:39 +00:00

16 lines
394 B
Nix

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