libmicrohttpd: Update to 0.9.44

Also move the info pages to a separate output, significantly reducing
the size of the main output.

+4 -2
+4 -2
pkgs/development/libraries/libmicrohttpd/default.nix
··· 1 { lib, stdenv, fetchurl, libgcrypt }: 2 3 stdenv.mkDerivation rec { 4 - name = "libmicrohttpd-0.9.43"; 5 6 src = fetchurl { 7 url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; 8 - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; 9 }; 10 11 buildInputs = [ libgcrypt ]; 12
··· 1 { lib, stdenv, fetchurl, libgcrypt }: 2 3 stdenv.mkDerivation rec { 4 + name = "libmicrohttpd-0.9.44"; 5 6 src = fetchurl { 7 url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; 8 + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; 9 }; 10 + 11 + outputs = [ "out" "info" ]; 12 13 buildInputs = [ libgcrypt ]; 14