fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
22 lines
545 B
Nix
22 lines
545 B
Nix
{stdenv, fetchurl, pkgconfig}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libao-0.8.8";
|
|
src = fetchurl {
|
|
url = http://downloads.xiph.org/releases/ao/libao-0.8.8.tar.gz;
|
|
sha256 = "e52e05af6b10f42d2ee9845df1a581bf2b352060eabf7946aee0a600c3878954";
|
|
};
|
|
|
|
buildInputs = [pkgconfig];
|
|
|
|
meta = {
|
|
longDescription = ''
|
|
Libao is Xiph.org's cross-platform audio library that allows
|
|
programs to output audio using a simple API on a wide variety of
|
|
platforms.
|
|
'';
|
|
homepage = http://xiph.org/ao/;
|
|
license = "GPL";
|
|
};
|
|
}
|