summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libdvbpsi/default.nix
blob: ecfa14a43c9a5d0a3da80f34fcda43e8575536ab (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "libdvbpsi-${version}";
  version = "0.2.2";

  src = fetchurl {
    url = "http://get.videolan.org/libdvbpsi/${version}/${name}.tar.bz2";
    sha256 = "1lry2swxqm8mhq0a4rjnc819ngsf2pxnfjajb57lml7yr12j79ls";
  };

  meta = {
    description = "A simple library designed for decoding and generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818 and ITU-T H.222.0";
    homepage = http://www.videolan.org/developers/libdvbpsi.html ;
    platforms = stdenv.lib.platforms.unix;
    license = stdenv.lib.licenses.lgpl21;
  };

}