about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/video/yamdi/default.nix
blob: e995f9e3a4f6997c5416e48c134c803ab8014d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 = "mirror://sourceforge/yamdi/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 ];
  };
}