tomcat: add danbst as maintainer

(cherry picked from commit a01d4ee3f4)
This commit is contained in:
danbst 2016-09-08 08:47:04 +00:00 committed by Graham Christensen
parent 3d0cd8e694
commit 096cad80cd
No known key found for this signature in database
GPG key ID: FE918C3A98C1030F
3 changed files with 10 additions and 3 deletions

View file

@ -97,6 +97,7 @@
cwoac = "Oliver Matthews <oliver@codersoffortune.net>";
DamienCassou = "Damien Cassou <damien@cassou.me>";
dasuxullebt = "Christoph-Simon Senjak <christoph.senjak@googlemail.com>";
danbst = "Danylo Hlynskyi <abcz2.uprola@gmail.com>";
davidak = "David Kleuker <post@davidak.de>";
davidrusu = "David Rusu <davidrusu.me@gmail.com>";
dbohdan = "Danyil Bohdan <danyil.bohdan@gmail.com>";

View file

@ -10,6 +10,10 @@ in
{
meta = {
maintainers = with maintainers; [ danbst ];
};
###### interface
options = {

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ stdenv, lib, fetchurl }:
let
@ -21,9 +21,11 @@ let
'';
meta = {
homepage = http://tomcat.apache.org/;
homepage = https://tomcat.apache.org/;
description = "An implementation of the Java Servlet and JavaServer Pages technologies";
platforms = with stdenv.lib.platforms; all;
platforms = with lib.platforms; all;
maintainers = with lib.maintainers; [ danbst ];
license = [ lib.licenses.asl20 ];
};
});