Skip to content

Commit

Permalink
announce myself as a maintainer
Browse files Browse the repository at this point in the history
added maintainer entries for `cdemu` (which i've created), as well as
`wine` and `chromium` (which I regularly contribute to)
  • Loading branch information
bendlas committed Oct 14, 2017
1 parent 5cca880 commit 30b3b5d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -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>";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/networking/browsers/chromium/browser.nix
Expand Up @@ -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 [];
Expand Down
1 change: 1 addition & 0 deletions pkgs/misc/emulators/cdemu/base.nix
Expand Up @@ -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)
1 change: 1 addition & 0 deletions pkgs/misc/emulators/cdemu/vhba.nix
Expand Up @@ -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 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/misc/emulators/wine/base.nix
Expand Up @@ -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 ];
};
})

0 comments on commit 30b3b5d

Please sign in to comment.