Merge pull request #191209 from afh/afh-got-update

got 0.75.1
This commit is contained in:
Bobby Rong 2022-09-15 20:17:33 +08:00 committed by GitHub
commit 4e87efb954
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -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";

View file

@ -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 ];
@ -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 ];
};
}