Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flvtool2: add licenses

+2 -1
+2 -1
pkgs/tools/video/flvtool2/default.nix
··· 1 - { buildRubyGem, ruby }: 2 3 buildRubyGem rec { 4 inherit ruby; ··· 12 homepage = https://github.com/unnu/flvtool2; 13 description = "A tool to manipulate Macromedia Flash Video files"; 14 platforms = ruby.meta.platforms; 15 }; 16 }
··· 1 + { lib, buildRubyGem, ruby }: 2 3 buildRubyGem rec { 4 inherit ruby; ··· 12 homepage = https://github.com/unnu/flvtool2; 13 description = "A tool to manipulate Macromedia Flash Video files"; 14 platforms = ruby.meta.platforms; 15 + license = lib.licenses.bsd3; 16 }; 17 }