nixpkgs/pkgs/development/libraries/mpeg2dec/default.nix
Eelco Dolstra 94d7d1fdbb * Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
2009-04-21 23:18:09 +00:00

16 lines
386 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "mpeg2dec-0.4.1";
src = fetchurl {
url = http://libmpeg2.sourceforge.net/files/mpeg2dec-0.4.1.tar.gz;
sha256 = "1vny7rg0p2rmic71hli2l2612i5yaw8vy0wsnm5nvhwfiw37cjn7";
};
meta = {
homepage = http://libmpeg2.sourceforge.net/;
description = "A free library for decoding mpeg-2 and mpeg-1 video streams";
};
}