Merge pull request #244298 from oxalica/remove-unused

{birdtray,isgx,mycrypto,osu-lazer,stretchly,tree-sitter}: remove oxalica as maintainer

authored by

Thiago Kenji Okada and committed by
GitHub
b45133e2 daeffe3a

+7 -8
+1 -1
pkgs/applications/blockchains/mycrypto/default.nix
··· 49 49 homepage = "https://mycrypto.com"; 50 50 license = licenses.mit; 51 51 platforms = [ "x86_64-linux" ]; 52 - maintainers = with maintainers; [ oxalica ]; 52 + maintainers = [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/applications/misc/birdtray/default.nix
··· 33 33 description = "Mail system tray notification icon for Thunderbird"; 34 34 homepage = "https://github.com/gyunaev/birdtray"; 35 35 license = licenses.gpl3Plus; 36 - maintainers = with maintainers; [ Flakebi oxalica ]; 36 + maintainers = with maintainers; [ Flakebi ]; 37 37 platforms = platforms.linux; 38 38 }; 39 39 }
+1 -1
pkgs/applications/misc/stretchly/default.nix
··· 74 74 homepage = "https://hovancik.net/stretchly"; 75 75 downloadPage = "https://hovancik.net/stretchly/downloads/"; 76 76 license = licenses.bsd2; 77 - maintainers = with maintainers; [ _1000101 oxalica ]; 77 + maintainers = with maintainers; [ _1000101 ]; 78 78 platforms = platforms.linux; 79 79 }; 80 80 }
+1 -1
pkgs/development/tools/parsing/tree-sitter/default.nix
··· 166 166 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application 167 167 ''; 168 168 license = licenses.mit; 169 - maintainers = with maintainers; [ oxalica Profpatsch ]; 169 + maintainers = with maintainers; [ Profpatsch ]; 170 170 }; 171 171 }
+1 -2
pkgs/games/osu-lazer/default.nix
··· 9 9 , SDL2 10 10 , lttng-ust 11 11 , numactl 12 - , dotnetCorePackages 13 12 , libglvnd 14 13 , xorg 15 14 , udev ··· 84 83 cc-by-nc-40 85 84 unfreeRedistributable # osu-framework contains libbass.so in repository 86 85 ]; 87 - maintainers = with maintainers; [ oxalica thiagokokada ]; 86 + maintainers = with maintainers; [ thiagokokada ]; 88 87 platforms = [ "x86_64-linux" ]; 89 88 mainProgram = "osu!"; 90 89 };
+2 -2
pkgs/os-specific/linux/isgx/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, kernel, kernelAtLeast }: 1 + { stdenv, lib, fetchFromGitHub, kernel }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "isgx-${version}-${kernel.version}"; ··· 39 39 ''; 40 40 homepage = "https://github.com/intel/linux-sgx-driver"; 41 41 license = with licenses; [ bsd3 /* OR */ gpl2Only ]; 42 - maintainers = with maintainers; [ oxalica ]; 42 + maintainers = [ ]; 43 43 platforms = [ "x86_64-linux" ]; 44 44 }; 45 45 }