mini-httpd: update to version 1.7

This commit is contained in:
Peter Simons 2017-08-29 13:04:09 +02:00
parent 239090715e
commit 25102567cf

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, boost }:
stdenv.mkDerivation rec {
name = "mini-httpd-1.6";
name = "mini-httpd-1.7";
src = fetchurl {
url = "http://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz";
sha256 = "04azr1qa70l0fnpbx7nmyxz1lkykjjs2b6p4lhkpg86hs3lrmxly";
sha256 = "0jggmlaywjfbdljzv5hyiz49plnxh0har2bnc9dq4xmj1pmjgs49";
};
buildInputs = [ boost ];
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://mini-httpd.nongnu.org/;
description = "A minimalistic high-performance web server";
description = "minimalistic high-performance web server";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.peti ];