added libdvbpsi and added it to the dependency list of vlc so that vlc can play DVB
svn path=/nixpkgs/trunk/; revision=30789
This commit is contained in:
19
pkgs/development/libraries/libdvbpsi/default.nix
Normal file
19
pkgs/development/libraries/libdvbpsi/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "libdvbpsi-0.2.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://download.videolan.org/pub/libdvbpsi/0.2.2/libdvbpsi-0.2.2.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.linux;
|
||||
license = "LGPLv2.1";
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user