commit
965b5a8aca
|
@ -2603,6 +2603,11 @@
|
||||||
github = "knl";
|
github = "knl";
|
||||||
name = "Nikola Knežević";
|
name = "Nikola Knežević";
|
||||||
};
|
};
|
||||||
|
kolaente = {
|
||||||
|
email = "k@knt.li";
|
||||||
|
github = "kolaente";
|
||||||
|
name = "Konrad Langenberg";
|
||||||
|
};
|
||||||
konimex = {
|
konimex = {
|
||||||
email = "herdiansyah@netc.eu";
|
email = "herdiansyah@netc.eu";
|
||||||
github = "konimex";
|
github = "konimex";
|
||||||
|
|
|
@ -9,7 +9,7 @@ with pkgs.lib;
|
||||||
{
|
{
|
||||||
mysql = makeTest {
|
mysql = makeTest {
|
||||||
name = "gitea-mysql";
|
name = "gitea-mysql";
|
||||||
meta.maintainers = [ maintainers.aanderse ];
|
meta.maintainers = with maintainers; [ aanderse kolaente ];
|
||||||
|
|
||||||
machine =
|
machine =
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
|
@ -8,13 +8,13 @@ with stdenv.lib;
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "gitea";
|
pname = "gitea";
|
||||||
version = "1.8.0";
|
version = "1.8.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "go-gitea";
|
owner = "go-gitea";
|
||||||
repo = "gitea";
|
repo = "gitea";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1x5r732rh1g23smgvvk10nlqbv14m7cf3y6zgwwl2bwkvax4z49b";
|
sha256 = "1gsismjhcgz7zk8zvyva4cgnq4wsh4cs7mdabpas9djz34sa1nr1";
|
||||||
# Required to generate the same checksum on MacOS due to unicode encoding differences
|
# Required to generate the same checksum on MacOS due to unicode encoding differences
|
||||||
# More information: https://github.com/NixOS/nixpkgs/pull/48128
|
# More information: https://github.com/NixOS/nixpkgs/pull/48128
|
||||||
extraPostFetch = ''
|
extraPostFetch = ''
|
||||||
|
@ -64,6 +64,6 @@ buildGoPackage rec {
|
||||||
description = "Git with a cup of tea";
|
description = "Git with a cup of tea";
|
||||||
homepage = https://gitea.io;
|
homepage = https://gitea.io;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.disassembler ];
|
maintainers = with maintainers; [ disassembler kolaente ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue