tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mini-httpd: update to version 1.5
Peter Simons
10 years ago
30187392
c0f50f31
+2
-6
1 changed file
expand all
collapse all
unified
split
pkgs
servers
http
mini-httpd
default.nix
+2
-6
pkgs/servers/http/mini-httpd/default.nix
reviewed
···
1
1
{ stdenv, fetchurl, boost }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "mini-httpd-1.4";
4
4
+
name = "mini-httpd-1.5";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://savannah/mini-httpd/${name}.tar.gz";
8
8
-
sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd";
8
8
+
sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir";
9
9
};
10
10
11
11
buildInputs = [ boost ];
12
12
13
13
enableParallelBuilding = true;
14
14
-
15
15
-
# Fixes compat with boost 1.59
16
16
-
# Please attempt removing when updating
17
17
-
CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED";
18
14
19
15
meta = {
20
16
homepage = "http://mini-httpd.nongnu.org/";