announce myself as a maintainer

added maintainer entries for `cdemu` (which i've created), as well as
`wine` and `chromium` (which I regularly contribute to)
This commit is contained in:
Herwig Hochleitner 2017-10-14 11:09:00 +02:00
parent 5cca8800a4
commit 30b3b5d85f
5 changed files with 5 additions and 2 deletions

View file

@ -72,6 +72,7 @@
bcarrell = "Brandon Carrell <brandoncarrell@gmail.com>";
bcdarwin = "Ben Darwin <bcdarwin@gmail.com>";
bdimcheff = "Brandon Dimcheff <brandon@dimcheff.com>";
bendlas = "Herwig Hochleitner <herwig@bendlas.net>";
benley = "Benjamin Staffin <benley@gmail.com>";
bennofs = "Benno Fünfstück <benno.fuenfstueck@gmail.com>";
benwbooth = "Ben Booth <benwbooth@gmail.com>";

View file

@ -47,7 +47,7 @@ mkChromiumDerivation (base: rec {
meta = {
description = "An open source web browser from Google";
homepage = http://www.chromium.org/;
maintainers = with maintainers; [ chaoflow ];
maintainers = with maintainers; [ chaoflow bendlas ];
license = licenses.bsd3;
platforms = platforms.linux;
hydraPlatforms = if channel == "stable" then ["x86_64-linux"] else [];

View file

@ -32,5 +32,6 @@ in stdenv.mkDerivation ({
homepage = http://cdemu.sourceforge.net/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ bendlas ];
};
} // drvParams)

View file

@ -18,5 +18,6 @@ stdenv.mkDerivation rec {
homepage = http://cdemu.sourceforge.net/about/vhba/;
platforms = platforms.linux;
licenses = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ bendlas ];
};
}

View file

@ -109,6 +109,6 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) {
homepage = http://www.winehq.org/;
license = "LGPL";
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
maintainers = with stdenv.lib.maintainers; [ avnik raskin ];
maintainers = with stdenv.lib.maintainers; [ avnik raskin bendlas ];
};
})