mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
18 lines
468 B
Nix
18 lines
468 B
Nix
{ lib, buildRubyGem, 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;
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|