1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #146439 from sikmir/quark

This commit is contained in:
Sandro 2021-11-19 23:52:52 +01:00 committed by GitHub
commit 45e0459f9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchgit, patches ? null }:
stdenv.mkDerivation {
pname = "quark";
version = "unstable-2021-02-22";
src = fetchgit {
url = "git://git.suckless.org/quark";
rev = "68b4f733b2755762e43df90f73db5a6ec8d14104";
sha256 = "sha256-Jtu5zJfHd+6Oq572nVem5msMDCOjdqDNH4SQck8/O5A=";
};
inherit patches;
makeFlags = [ "CC:=$(CC)" ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Extremely small and simple HTTP GET/HEAD-only web server for static content";
homepage = "http://tools.suckless.org/quark";
license = licenses.isc;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
};
}

View file

@ -21069,6 +21069,8 @@ with pkgs;
pshs = callPackage ../servers/http/pshs { };
quark = callPackage ../servers/http/quark { };
sympa = callPackage ../servers/mail/sympa { };
system-sendmail = lowPrio (callPackage ../servers/mail/system-sendmail { });