forked from mirrors/nixpkgs
lame 3.96.1
svn path=/nixpkgs/trunk/; revision=2065
This commit is contained in:
parent
cec2c24d85
commit
bdf57c697c
9
pkgs/applications/audio/lame/default.nix
Normal file
9
pkgs/applications/audio/lame/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "lame-3.96.1";
|
||||
src = fetchurl {
|
||||
url = http://mesh.dl.sourceforge.net/sourceforge/lame/lame-3.96.1.tar.gz ;
|
||||
md5 = "e1206c46a5e276feca11a7149e2fc6ac" ;
|
||||
};
|
||||
}
|
|
@ -874,6 +874,9 @@ rec {
|
|||
inherit fetchurl stdenv libogg;
|
||||
};
|
||||
|
||||
lame = (import ../applications/audio/lame) {
|
||||
inherit fetchurl stdenv ;
|
||||
};
|
||||
|
||||
MPlayer = (import ../applications/video/MPlayer) {
|
||||
inherit fetchurl stdenv freetype x11 zlib;
|
||||
|
|
Loading…
Reference in a new issue