nixpkgs/pkgs/applications/audio/lame/default.nix

18 lines
439 B
Nix
Raw Normal View History

{stdenv, fetchurl, nasm}:
stdenv.mkDerivation rec {
2013-03-30 17:10:15 +00:00
name = "lame-3.99.5";
src = fetchurl {
url = "mirror://sourceforge/lame/${name}.tar.gz";
2013-03-30 17:10:15 +00:00
sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14";
};
buildInputs = [ nasm ];
configureFlags = [ "--enable-nasm" ];
# Either disable static, or fix the rpath of 'lame' for it to point
# properly to the libmp3lame shared object.
dontDisableStatic = true;
}