mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
454707da23
svn path=/nixpkgs/trunk/; revision=3660
11 lines
245 B
Nix
11 lines
245 B
Nix
{stdenv, fetchurl, libogg}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvorbis-1.1.0";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/libvorbis-1.1.0.tar.gz;
|
|
md5 = "bb764aeabde613d1a424a29b1f15e7e6";
|
|
};
|
|
buildInputs = [libogg];
|
|
}
|