mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
17 lines
383 B
Nix
17 lines
383 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ xz ];
|
|
propagatedBuildInputs = [ libogg ];
|
|
|
|
meta = {
|
|
homepage = http://xiph.org/vorbis/;
|
|
};
|
|
}
|