Merge pull request #113760 from chvp/bump-gomuks

This commit is contained in:
Sandro 2021-02-22 01:35:07 +01:00 committed by GitHub
commit 4249bb41f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 13 deletions

View File

@ -1603,12 +1603,6 @@
githubId = 89596; githubId = 89596;
name = "Florian Friesdorf"; name = "Florian Friesdorf";
}; };
charvp = {
email = "nixpkgs@cvpetegem.be";
github = "charvp";
githubId = 42220376;
name = "Charlotte Van Petegem";
};
chattered = { chattered = {
email = "me@philscotted.com"; email = "me@philscotted.com";
name = "Phil Scott"; name = "Phil Scott";
@ -1717,6 +1711,12 @@
githubId = 2245737; githubId = 2245737;
name = "Christopher Mark Poole"; name = "Christopher Mark Poole";
}; };
chvp = {
email = "nixpkgs@cvpetegem.be";
github = "chvp";
githubId = 42220376;
name = "Charlotte Van Petegem";
};
ciil = { ciil = {
email = "simon@lackerbauer.com"; email = "simon@lackerbauer.com";
github = "ciil"; github = "ciil";

View File

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
description = "A simple integrated development environment for Java"; description = "A simple integrated development environment for Java";
homepage = "https://www.bluej.org/"; homepage = "https://www.bluej.org/";
license = licenses.gpl2ClasspathPlus; license = licenses.gpl2ClasspathPlus;
maintainers = [ maintainers.charvp ]; maintainers = [ maintainers.chvp ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }

View File

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
description = "A simple integrated development environment for Java"; description = "A simple integrated development environment for Java";
homepage = "https://www.greenfoot.org/"; homepage = "https://www.greenfoot.org/";
license = licenses.gpl2ClasspathPlus; license = licenses.gpl2ClasspathPlus;
maintainers = [ maintainers.charvp ]; maintainers = [ maintainers.chvp ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }

View File

@ -13,16 +13,16 @@
buildGoModule rec { buildGoModule rec {
pname = "gomuks"; pname = "gomuks";
version = "0.2.2"; version = "0.2.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tulir"; owner = "tulir";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "169xyd44jyfh5njwmhsmkah8njfgnp9q9c2b13p0ry5saicwm5h5"; sha256 = "0g0aa6h6bm00mdgkb38wm66rcrhqfvs2xj9rl04bwprsa05q5lca";
}; };
vendorSha256 = "1l8qnz0qy90zpywfx7pbkqpxg7rkvc9j622zcmkf38kdc1z6w20a"; vendorSha256 = "14ya5advpv4q5il235h5dxy8c2ap2yzrvqs0sjqgw0v1vm6vpwdx";
doCheck = false; doCheck = false;
@ -54,8 +54,8 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
homepage = "https://maunium.net/go/gomuks/"; homepage = "https://maunium.net/go/gomuks/";
description = "A terminal based Matrix client written in Go"; description = "A terminal based Matrix client written in Go";
license = licenses.gpl3; license = licenses.agpl3Plus;
maintainers = with maintainers; [ charvp emily ]; maintainers = with maintainers; [ chvp emily ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }