summary refs log tree commit diff
path: root/pkgs/development/libraries/mpeg2dec/default.nix
blob: fb76ac97bf845a4149c02f55c2903f191c428c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "mpeg2dec-20030612";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.videolan.org/pub/videolan/vlc/0.6.2/contrib/mpeg2dec-20030612.tar.bz2;
    md5 = "17b880eb8766a2e46834d2274882d284";
  };
  stdenv = stdenv;
}