lol

mini-httpd: update to version 1.5

+2 -6
+2 -6
pkgs/servers/http/mini-httpd/default.nix
··· 1 1 { stdenv, fetchurl, boost }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "mini-httpd-1.4"; 4 + name = "mini-httpd-1.5"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://savannah/mini-httpd/${name}.tar.gz"; 8 - sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd"; 8 + sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir"; 9 9 }; 10 10 11 11 buildInputs = [ boost ]; 12 12 13 13 enableParallelBuilding = true; 14 - 15 - # Fixes compat with boost 1.59 16 - # Please attempt removing when updating 17 - CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; 18 14 19 15 meta = { 20 16 homepage = "http://mini-httpd.nongnu.org/";