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

10 lines
204 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lame-3.96.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/lame-3.96.1.tar.gz;
md5 = "e1206c46a5e276feca11a7149e2fc6ac" ;
};
}