tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
flvtool2: add licenses
Markus Kowalewski
7 years ago
d9416449
4d933fbf
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
video
flvtool2
default.nix
+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;
0
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
}