summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2020-09-20 11:38:30 +0200
committerGitHub <noreply@github.com>2020-09-20 11:38:30 +0200
commit770ecb1d3134a7b0e4469eb790836bd837c9f675 (patch)
tree4fce5b82661e839d32c1e59b61e334da9e2f7605
parent68f4e27857072aca5cfd582c099434cdd90036f0 (diff)
parent609e3aa50777ccea330366d3da2245a75a83834c (diff)
Merge pull request #98266 from joncojonathan/removeAsMaintainer
Remove joncojonathan as maintainer
-rw-r--r--maintainers/maintainer-list.nix6
-rw-r--r--pkgs/applications/backup/deja-dup/default.nix2
-rw-r--r--pkgs/applications/misc/gramps/default.nix4
-rw-r--r--pkgs/applications/misc/keepass/default.nix4
4 files changed, 4 insertions, 12 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 3b09303f75b1..13a35c5c806d 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -4102,12 +4102,6 @@
githubId = 1843676;
name = "Jonathan Reeve";
};
- joncojonathan = {
- email = "joncojonathan@gmail.com";
- github = "joncojonathan";
- githubId = 11414454;
- name = "Jonathan Haddock";
- };
jonringer = {
email = "jonringer117@gmail.com";
github = "jonringer";
diff --git a/pkgs/applications/backup/deja-dup/default.nix b/pkgs/applications/backup/deja-dup/default.nix
index 5d1d75e31ebc..ad4fc9728be2 100644
--- a/pkgs/applications/backup/deja-dup/default.nix
+++ b/pkgs/applications/backup/deja-dup/default.nix
@@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://wiki.gnome.org/Apps/DejaDup";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ jtojnar joncojonathan ];
+ maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/gramps/default.nix b/pkgs/applications/misc/gramps/default.nix
index e5a2b87f16ef..09717cd64265 100644
--- a/pkgs/applications/misc/gramps/default.nix
+++ b/pkgs/applications/misc/gramps/default.nix
@@ -13,14 +13,13 @@ in buildPythonApplication rec {
pname = "gramps";
nativeBuildInputs = [ wrapGAppsHook gettext ];
- buildInputs = [ intltool gtk3 gobject-introspection pango gnome3.gexiv2 ]
+ buildInputs = [ intltool gtk3 gobject-introspection pango gnome3.gexiv2 ]
# Map support
++ stdenv.lib.optional enableOSM osm-gps-map
# Graphviz support
++ stdenv.lib.optional enableGraphviz graphviz
# Ghostscript support
++ stdenv.lib.optional enableGhostscript ghostscript
-
;
src = fetchFromGitHub {
@@ -60,6 +59,5 @@ in buildPythonApplication rec {
description = "Genealogy software";
homepage = "https://gramps-project.org";
license = licenses.gpl2;
- maintainers = with maintainers; [ joncojonathan ];
};
}
diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix
index ea579ce41174..23f80eaa9cab 100644
--- a/pkgs/applications/misc/keepass/default.nix
+++ b/pkgs/applications/misc/keepass/default.nix
@@ -87,7 +87,7 @@ with builtins; buildDotnetPackage rec {
dynlibPath = stdenv.lib.makeLibraryPath [ gtk2 ];
- postInstall =
+ postInstall =
let
extractFDeskIcons = ./extractWinRscIconsToStdFreeDesktopDir.sh;
in
@@ -111,7 +111,7 @@ with builtins; buildDotnetPackage rec {
meta = {
description = "GUI password manager with strong cryptography";
homepage = "http://www.keepass.info/";
- maintainers = with stdenv.lib.maintainers; [ amorsillo obadz joncojonathan jraygauthier ];
+ maintainers = with stdenv.lib.maintainers; [ amorsillo obadz jraygauthier ];
platforms = with stdenv.lib.platforms; all;
license = stdenv.lib.licenses.gpl2;
};