nixpkgs/pkgs/development/libraries/libogg/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
362 B
Nix

{ stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
name = "libogg-1.3.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "0jy79ffkl34vycnwfsj4svqsdg1lwy2l1rr49y8r4d44kh12a5r3";
};
buildNativeInputs = [ xz ];
outputs = [ "dev" "doc" "out" ];
meta = {
homepage = http://xiph.org/ogg/;
};
}