mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
686 B
Nix
27 lines
686 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;
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
|
|
|
meta = {
|
|
homepage = "http://mini-httpd.nongnu.org/";
|
|
description = "minimalistic high-performance web server";
|
|
mainProgram = "httpd";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.peti ];
|
|
};
|
|
}
|