nixpkgs/pkgs/development/libraries/libvorbis/default.nix
Eelco Dolstra 3a35ba350f Turn multipleOutputs into a stdenv adaptation
This way we can merge it into stdenv.mkDerivation later without having
to modify any package expressions (except the overrides in
all-packages.nix).
2012-08-24 20:43:48 -04:00

19 lines
417 B
Nix

{ stdenv, fetchurl, libogg, xz }:
stdenv.mkDerivation rec {
name = "libvorbis-1.3.3";
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
sha256 = "1gby6hapz9njx4l9g0pndyk4q83z5fgrgc30mfwfgx7bllspsk43";
};
buildNativeInputs = [ xz ];
propagatedBuildInputs = [ libogg ];
outputs = [ "dev" "out" "doc" ];
meta = {
homepage = http://xiph.org/vorbis/;
};
}