Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 pname = "libdvbpsi"; 5 version = "1.3.3"; 6 7 src = fetchurl { 8 url = "http://get.videolan.org/libdvbpsi/${version}/${pname}-${version}.tar.bz2"; 9 sha256 = "04h1l3vrkrdsrvkgzcr51adk10g6hxcxvgjphyyxz718ry5rkd82"; 10 }; 11 12 meta = { 13 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"; 14 homepage = "http://www.videolan.org/developers/libdvbpsi.html"; 15 platforms = lib.platforms.unix; 16 license = lib.licenses.lgpl21; 17 }; 18 19}