summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/video
diff options
context:
space:
mode:
authorRyan Artecona <ryanartecona@gmail.com>2016-03-16 10:29:12 -0400
committerRyan Artecona <ryanartecona@gmail.com>2016-03-16 11:39:43 -0400
commit9da04035271f559ac4d643fe97b0a88b6bd024da (patch)
tree956a494b9894fd63fcea43cef22e09e85bdb8b43 /pkgs/tools/video
parent76dead2099e6c4b804f2d5a5057fc45991f96768 (diff)
yamdi: init at 1.9
Diffstat (limited to 'pkgs/tools/video')
-rw-r--r--pkgs/tools/video/yamdi/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/video/yamdi/default.nix b/pkgs/tools/video/yamdi/default.nix
new file mode 100644
index 000000000000..a0594141adfe
--- /dev/null
+++ b/pkgs/tools/video/yamdi/default.nix
@@ -0,0 +1,31 @@
+{
+ stdenv,
+ fetchurl,
+}:
+
+stdenv.mkDerivation rec {
+ name = "yamdi-${version}";
+ version = "1.9";
+
+ # Source repo is also available here:
+ # https://github.com/ioppermann/yamdi
+ src = fetchurl {
+ url = "https://downloads.sourceforge.net/project/yamdi/yamdi/${version}/yamdi-${version}.tar.gz";
+ sha256 = "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715";
+ };
+
+ buildFlags = "CC=cc";
+
+ installPhase = ''
+ install -D {,$out/bin/}yamdi
+ install -D {,$out/share/man/}man1/yamdi.1
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Yet Another MetaData Injector for FLV";
+ homepage = http://yamdi.sourceforge.net/;
+ license = licenses.bsd3;
+ platforms = platforms.all;
+ maintainers = [ maintainers.ryanartecona ];
+ };
+}