mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
a722d04617
Moved back to C++14 where dynamic exception specifications are deprecated but still present. ZHF: #172160
26 lines
646 B
Nix
26 lines
646 B
Nix
{ lib, stdenv, fetchurl, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mini-httpd";
|
|
version = "1.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://download-mirror.savannah.gnu.org/releases/mini-httpd/${pname}-${version}.tar.gz";
|
|
sha256 = "0jggmlaywjfbdljzv5hyiz49plnxh0har2bnc9dq4xmj1pmjgs49";
|
|
};
|
|
|
|
buildInputs = [ boost ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
|
|
|
meta = {
|
|
homepage = "http://mini-httpd.nongnu.org/";
|
|
description = "minimalistic high-performance web server";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.peti ];
|
|
};
|
|
}
|