mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 07:29:09 +00:00
cgiserver: init at 1.0.0
This commit is contained in:
parent
4c83012f83
commit
78cf42b90d
21
pkgs/servers/http/cgiserver/default.nix
Normal file
21
pkgs/servers/http/cgiserver/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildGoModule, fetchzip, zstd }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cgiserver";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://src.anomalous.eu/cgiserver/snapshot/cgiserver-${version}.tar.zst";
|
||||
nativeBuildInputs = [ zstd ];
|
||||
sha256 = "14bp92sw0w6n5dzs4f7g4fcklh25nc9k0xjx4ia0gi7kn5jwx2mq";
|
||||
};
|
||||
|
||||
vendorSha256 = "00jslxzf6p8zs1wxdx3qdb919i80xv4w9ihljd40nnydasshqa4v";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://src.anomalous.eu/cgiserver/about/";
|
||||
description = "Lightweight web server for sandboxing CGI applications";
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
license = licenses.osl3;
|
||||
};
|
||||
}
|
@ -21614,6 +21614,8 @@ with pkgs;
|
||||
|
||||
cayley = callPackage ../servers/cayley { };
|
||||
|
||||
cgiserver = callPackage ../servers/http/cgiserver { };
|
||||
|
||||
charybdis = callPackage ../servers/irc/charybdis {
|
||||
autoreconfHook = buildPackages.autoreconfHook269;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user