Merge pull request #135956 from Ma27/ma27-unmaintain

treewide: remove ma27 from the maintainer-list of a few packages
launchpad/nixpkgs/master
Sandro 3 years ago committed by GitHub
commit a5237b5614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      nixos/tests/graylog.nix
  2. 2
      nixos/tests/nexus.nix
  3. 2
      nixos/tests/xautolock.nix
  4. 2
      nixos/tests/xss-lock.nix
  5. 2
      nixos/tests/yabar.nix
  6. 2
      pkgs/applications/misc/taizen/default.nix
  7. 2
      pkgs/applications/misc/xmind/default.nix
  8. 2
      pkgs/applications/video/avidemux/default.nix
  9. 2
      pkgs/applications/video/xscast/default.nix
  10. 2
      pkgs/development/libraries/howard-hinnant-date/default.nix
  11. 2
      pkgs/development/libraries/libelfin/default.nix
  12. 2
      pkgs/development/python-modules/fs-s3fs/default.nix
  13. 2
      pkgs/development/python-modules/nose-cov/default.nix
  14. 2
      pkgs/development/python-modules/parameterized/default.nix
  15. 2
      pkgs/development/python-modules/pybase64/default.nix
  16. 2
      pkgs/development/python-modules/todoist/default.nix
  17. 2
      pkgs/development/tools/database/shmig/default.nix
  18. 2
      pkgs/development/tools/rust/racer/default.nix
  19. 2
      pkgs/tools/graphics/nifskope/default.nix
  20. 2
      pkgs/tools/misc/peep/default.nix
  21. 2
      pkgs/tools/misc/thefuck/default.nix

@ -1,6 +1,6 @@
import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "graylog";
meta.maintainers = with lib.maintainers; [ ma27 ];
meta.maintainers = with lib.maintainers; [ ];
machine = { pkgs, ... }: {
virtualisation.memorySize = 4096;

@ -6,7 +6,7 @@
import ./make-test-python.nix ({ pkgs, ...} : {
name = "nexus";
meta = with pkgs.lib.maintainers; {
maintainers = [ ironpinguin ma27 ];
maintainers = [ ironpinguin ];
};
nodes = {

@ -4,7 +4,7 @@ with lib;
{
name = "xautolock";
meta.maintainers = with pkgs.lib.maintainers; [ ma27 ];
meta.maintainers = with pkgs.lib.maintainers; [ ];
nodes.machine = {
imports = [ ./common/x11.nix ./common/user-account.nix ];

@ -4,7 +4,7 @@ with lib;
{
name = "xss-lock";
meta.maintainers = with pkgs.lib.maintainers; [ ma27 ];
meta.maintainers = with pkgs.lib.maintainers; [ ];
nodes = {
simple = {

@ -5,7 +5,7 @@ with lib;
{
name = "yabar";
meta = with pkgs.lib.maintainers; {
maintainers = [ ma27 ];
maintainers = [ ];
};
machine = {

@ -20,6 +20,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://crates.io/crates/taizen";
license = licenses.mit;
description = "curses based mediawiki browser";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -87,6 +87,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.xmind.net/";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ michalrus ma27 ];
maintainers = with maintainers; [ michalrus ];
};
}

@ -91,7 +91,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "http://fixounet.free.fr/avidemux/";
description = "Free video editor designed for simple video editing tasks";
maintainers = with maintainers; [ abbradar ma27 ];
maintainers = with maintainers; [ abbradar ];
# "CPU not supported" errors on AArch64
platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.gpl2;

@ -30,6 +30,6 @@ stdenv.mkDerivation {
homepage = "https://github.com/KeyboardFire/xscast";
license = licenses.mit;
description = "Screencasts of windows with list of keystrokes overlayed";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
description = "A date and time library based on the C++11/14/17 <chrono> header";
homepage = "https://github.com/HowardHinnant/date";
platforms = platforms.linux;
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/aclements/libelfin/";
license = licenses.mit;
description = "C++11 ELF/DWARF parser";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}

@ -18,6 +18,6 @@ buildPythonPackage rec {
homepage = "https://pypi.org/project/fs-s3fs/";
license = licenses.mit;
description = "Amazon S3 filesystem for PyFilesystem2";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -15,6 +15,6 @@ buildPythonPackage rec {
homepage = "https://pypi.org/project/nose-cov/";
license = licenses.mit;
description = "This plugin produces coverage reports. It also supports coverage of subprocesses.";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -35,6 +35,6 @@ buildPythonPackage rec {
description = "Parameterized testing with any Python test framework";
homepage = "https://github.com/wolever/parameterized";
license = licenses.bsd2;
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -24,6 +24,6 @@ buildPythonPackage rec {
description = "Fast Base64 encoding/decoding";
homepage = "https://github.com/mayeut/pybase64";
license = licenses.bsd2;
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -17,6 +17,6 @@ buildPythonPackage rec {
description = "The official Todoist Python API library";
homepage = "https://todoist-python.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
description = "Minimalistic database migration tool with MySQL, PostgreSQL and SQLite support";
homepage = "https://github.com/mbucc/shmig";
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -43,6 +43,6 @@ rustPlatform.buildRustPackage rec {
description = "A utility intended to provide Rust code completion for editors and IDEs";
homepage = "https://github.com/racer-rust/racer";
license = licenses.mit;
maintainers = with maintainers; [ jagajaga ma27 ];
maintainers = with maintainers; [ jagajaga ];
};
}

@ -60,7 +60,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "http://niftools.sourceforge.net/wiki/NifSkope";
description = "A tool for analyzing and editing NetImmerse/Gamebryo '*.nif' files";
maintainers = with maintainers; [ eelco ma27 ];
maintainers = with maintainers; [ eelco ];
platforms = platforms.linux;
license = licenses.bsd3;
};

@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec {
description = "The CLI text viewer tool that works like less command on small pane within the terminal window";
license = licenses.mit;
homepage = "https://github.com/ryochack/peep";
maintainers = with maintainers; [ ma27 ];
maintainers = with maintainers; [ ];
};
}

@ -22,6 +22,6 @@ buildPythonApplication rec {
homepage = "https://github.com/nvbn/thefuck";
description = "Magnificent app which corrects your previous console command";
license = licenses.mit;
maintainers = with maintainers; [ ma27 SuperSandro2000 ];
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

Loading…
Cancel
Save