mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
mini-httpd: update to version 1.5
This commit is contained in:
parent
c0f50f3179
commit
3018739223
@ -1,21 +1,17 @@
|
||||
{ stdenv, fetchurl, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mini-httpd-1.4";
|
||||
name = "mini-httpd-1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://savannah/mini-httpd/${name}.tar.gz";
|
||||
sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd";
|
||||
sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir";
|
||||
};
|
||||
|
||||
buildInputs = [ boost ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# Fixes compat with boost 1.59
|
||||
# Please attempt removing when updating
|
||||
CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED";
|
||||
|
||||
meta = {
|
||||
homepage = "http://mini-httpd.nongnu.org/";
|
||||
description = "a minimalistic high-performance web server";
|
||||
|
Loading…
Reference in New Issue
Block a user