* mpeg2dec -> libmpeg2, and updated to 0.5.1.

svn path=/nixpkgs/branches/kde-4.7/; revision=27949
This commit is contained in:
Eelco Dolstra
2011-07-25 19:07:36 +00:00
parent a656221873
commit 929160b86d
3 changed files with 18 additions and 18 deletions
@@ -0,0 +1,15 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libmpeg2-0.5.1";
src = fetchurl {
url = "http://libmpeg2.sourceforge.net/files/${name}.tar.gz";
sha256 = "1m3i322n2fwgrvbs1yck7g5md1dbg22bhq5xdqmjpz5m7j4jxqny";
};
meta = {
homepage = http://libmpeg2.sourceforge.net/;
description = "A free library for decoding mpeg-2 and mpeg-1 video streams";
};
}