summary refs log tree commit diff
path: root/pkgs/development/libraries/libdvbpsi
diff options
context:
space:
mode:
authorPiotr Pietraszkiewicz <ppietrasa@googlemail.com>2011-12-06 23:09:19 +0000
committerPiotr Pietraszkiewicz <ppietrasa@googlemail.com>2011-12-06 23:09:19 +0000
commit1bd85e4159a5f7e26e4f34ada04bbac7f201588a (patch)
tree2ee21632bacf228b19ea091a858ae7f155b2f3b1 /pkgs/development/libraries/libdvbpsi
parent32163fa1fffeb65d6589afa89230f1b816603ed8 (diff)
downloadnixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar.gz
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar.bz2
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar.lz
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar.xz
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.tar.zst
nixpkgs-1bd85e4159a5f7e26e4f34ada04bbac7f201588a.zip
added libdvbpsi and added it to the dependency list of vlc so that vlc can play DVB
svn path=/nixpkgs/trunk/; revision=30789
Diffstat (limited to 'pkgs/development/libraries/libdvbpsi')
-rw-r--r--pkgs/development/libraries/libdvbpsi/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libdvbpsi/default.nix b/pkgs/development/libraries/libdvbpsi/default.nix
new file mode 100644
index 00000000000..d3ce7082621
--- /dev/null
+++ b/pkgs/development/libraries/libdvbpsi/default.nix
@@ -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";
+  };
+
+}