mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
74c69387db
The rubygems.org source doesn't exist anymore. It was also depending on ruby 1.8 to work correctly.
16 lines
394 B
Nix
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;
|
|
};
|
|
}
|