mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4103b304f9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdvbpsi/versions
20 lines
603 B
Nix
20 lines
603 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdvbpsi";
|
|
version = "1.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://get.videolan.org/libdvbpsi/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "04h1l3vrkrdsrvkgzcr51adk10g6hxcxvgjphyyxz718ry5rkd82";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|