Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

freealut: Clean up expression and add meta.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig 88a8b004 9edfad27

+12 -4
+12 -4
pkgs/development/libraries/freealut/default.nix
··· 1 - {stdenv, fetchurl, openal}: 1 + { stdenv, fetchurl, openal }: 2 2 3 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 4 4 name = "freealut-1.1.0"; 5 + 5 6 src = fetchurl { 6 - url = http://www.openal.org/openal_webstf/downloads/freealut-1.1.0.tar.gz; 7 + url = "http://www.openal.org/openal_webstf/downloads/${name}.tar.gz"; 7 8 sha256 = "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0"; 8 9 }; 9 - buildInputs = [openal]; 10 + 11 + buildInputs = [ openal ]; 12 + 13 + meta = { 14 + homepage = "http://openal.org/"; 15 + description = "Free implementation of OpenAL's ALUT standard"; 16 + license = stdenv.lib.licenses.lgpl2; 17 + }; 10 18 }