From a9e8138a20a6c4d56307c680f75d91233def5b6e Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Wed, 14 Sep 2022 18:29:48 +0200 Subject: [PATCH 1/2] got 0.75 -> 0.75.1 --- pkgs/applications/version-management/got/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/got/default.nix b/pkgs/applications/version-management/got/default.nix index 14827119f237..5d95e5d55923 100644 --- a/pkgs/applications/version-management/got/default.nix +++ b/pkgs/applications/version-management/got/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { pname = "got"; - version = "0.75"; + version = "0.75.1"; src = fetchurl { url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz"; - sha256 = "sha256-s1MkiTya771r9JYCpsm7nW4gZwr/PJc0/v6tAgW7nLI="; + sha256 = "sha256-GlEXB89fZPRZAwvUUHcyKCH3Jj5AOvMSHFodsVKepSQ="; }; nativeBuildInputs = [ pkg-config bison ]; From 8ea5e14abf998a11a6dc58da6ea999960a4e7731 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Wed, 14 Sep 2022 18:30:26 +0200 Subject: [PATCH 2/2] got: Add afh as co-maintainer --- maintainers/maintainer-list.nix | 6 ++++++ pkgs/applications/version-management/got/default.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 80b7e04371bc..30233bfc38f0 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -373,6 +373,12 @@ githubId = 10677343; name = "Eugene"; }; + afh = { + email = "surryhill+nix@gmail.com"; + github = "afh"; + githubId = 16507; + name = "Alexis Hildebrandt"; + }; aflatter = { email = "flatter@fastmail.fm"; github = "aflatter"; diff --git a/pkgs/applications/version-management/got/default.nix b/pkgs/applications/version-management/got/default.nix index 5d95e5d55923..a74fe8b098c3 100644 --- a/pkgs/applications/version-management/got/default.nix +++ b/pkgs/applications/version-management/got/default.nix @@ -45,6 +45,6 @@ stdenv.mkDerivation rec { homepage = "https://gameoftrees.org"; license = licenses.isc; platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ abbe ]; + maintainers = with maintainers; [ abbe afh ]; }; }