nixpkgs/pkgs/development/libraries/libdvbpsi/default.nix
Ryan Mulligan afe11c5929 libdvbpsi: 0.2.2 -> 1.3.2
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.3.2 with grep in /nix/store/s7iwmkbdw6lhkbiqb91r9j0crqqagc7v-libdvbpsi-1.3.2
- found 1.3.2 in filename of file in /nix/store/s7iwmkbdw6lhkbiqb91r9j0crqqagc7v-libdvbpsi-1.3.2
2018-03-04 20:59:46 +00:00

20 lines
601 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "libdvbpsi-${version}";
version = "1.3.2";
src = fetchurl {
url = "http://get.videolan.org/libdvbpsi/${version}/${name}.tar.bz2";
sha256 = "1zn5hfv4qbahmydbwh59a3b480s3m5ss27r6ml35gqdip7r3jkmc";
};
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;
};
}