Updating lame, because it had a bug at encoding.

svn path=/nixpkgs/trunk/; revision=22024
This commit is contained in:
Lluís Batlle i Rossell 2010-05-27 20:49:04 +00:00
parent 7c19b40dbf
commit 52c92a9fbe

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, nasm}:
stdenv.mkDerivation {
name = "lame-3.98.2";
stdenv.mkDerivation rec {
name = "lame-3.98.4";
src = fetchurl {
url = mirror://sourceforge/lame/lame-398-2.tar.gz;
sha256 = "0cmgr515szd9kd19mpzvwl3cbnpfyjyi47swj4afblcfkmb2hym1";
url = "mirror://sourceforge/lame/${name}.tar.gz";
sha256 = "1j3jywv6ic2cy0x0q1a1h6rcl6xmcs5f58xawjdkl8hpcv3l8cdc";
};
buildInputs = [ nasm ];