3b3ee13b9d
Updating libgpod Making gtkpod accept 'ogg' files, and made it convert them well to mp3, if 'lame' and oggdec is in path. It should better reference lame and libvorbis store path files. svn path=/nixpkgs/trunk/; revision=17888
14 lines
362 B
Nix
14 lines
362 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lame-3.98.2";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/lame/lame-398-2.tar.gz;
|
|
sha256 = "0cmgr515szd9kd19mpzvwl3cbnpfyjyi47swj4afblcfkmb2hym1";
|
|
};
|
|
|
|
# Either disable static, or fix the rpath of 'lame' for it to point
|
|
# properly to the libmp3lame shared object.
|
|
dontDisableStatic = true;
|
|
}
|