mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
f33363a841
svn path=/nixpkgs/branches/stdenv-updates/; revision=19511
12 lines
290 B
Nix
12 lines
290 B
Nix
{stdenv, fetchurl, libogg}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvorbis-1.2.3";
|
|
src = fetchurl {
|
|
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.bz2;
|
|
sha256 = "0aj9jfxsp89vs78321sqvj8my4bxcb7pjr959nhi9wj0r032gyfv";
|
|
};
|
|
|
|
propagatedBuildInputs = [ libogg ];
|
|
}
|