tomcat: add danbst as maintainer

This commit is contained in:
danbst 2016-09-08 08:47:04 +00:00 committed by Bjørn Forsman
parent 8511ddc89a
commit a01d4ee3f4
3 changed files with 10 additions and 3 deletions

View File

@ -99,6 +99,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 ];
};
});