merecat: init at 2.31

This commit is contained in:
Francesco Gazzetta 2022-09-08 14:29:44 +02:00
parent afddc087d9
commit 9f50ee94a5
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, libconfuse
, libxcrypt
}:
stdenv.mkDerivation rec {
pname = "merecat";
version = "2.31";
# Or, already reconf'd: ftp://ftp.troglobit.com/merecat/merecat-${version}.tar.xz
src = fetchFromGitHub {
owner = "troglobit";
repo = "merecat";
rev = "v${version}";
hash = "sha256-oIzOXUnCFqd3HPyKp58r+enRRpaE7f9hqNITtxCCB7I=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libconfuse
libxcrypt
];
meta = with lib; {
description = "Small and made-easy HTTP/HTTPS server based on Jef Poskanzer's thttpd";
homepage = "https://troglobit.com/projects/merecat/";
license = licenses.bsd2;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
# Strange header and/or linker errors
broken = stdenv.isDarwin;
};
}

View file

@ -23652,6 +23652,8 @@ with pkgs;
memcached = callPackage ../servers/memcached {};
merecat = callPackage ../servers/http/merecat { };
meteor = callPackage ../servers/meteor { };
micronaut = callPackage ../development/tools/micronaut {};