e8194c2c5b
* remove EOL ruby versions for security and maintenance reasons. * only expose ruby_MAJOR_MINOR to the top-level. we don't provide guarantees for the TINY version. * mark all related packages as broken * switch the default ruby version from 2.3.x to 2.4.x
17 lines
435 B
Nix
17 lines
435 B
Nix
{ buildRubyGem, lib, ruby }:
|
|
|
|
buildRubyGem rec {
|
|
inherit ruby;
|
|
name = "${gemName}-${version}";
|
|
gemName = "flvtool2";
|
|
version = "1.0.6";
|
|
source.sha256 = "0xsla1061pi4ryh3jbvwsbs8qchprchbqjy7652g2g64v37i74qj";
|
|
|
|
meta = {
|
|
broken = true; # depends on ruby 2.2
|
|
homepage = https://github.com/unnu/flvtool2;
|
|
description = "A tool to manipulate Macromedia Flash Video files";
|
|
platforms = ruby.meta.platforms;
|
|
};
|
|
}
|