mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
02c595ebdb
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: nixpkgs-review <nixpkgs-review@example.com>
24 lines
604 B
Nix
24 lines
604 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;
|
|
|
|
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 ];
|
|
};
|
|
}
|