forked from mirrors/nixpkgs
gitea: 1.2.3 -> 1.3.2
This commit is contained in:
parent
a192ac5959
commit
98e3a4c879
|
@ -7,13 +7,13 @@ with stdenv.lib;
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "gitea-${version}";
|
name = "gitea-${version}";
|
||||||
version = "1.2.3";
|
version = "1.3.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "go-gitea";
|
owner = "go-gitea";
|
||||||
repo = "gitea";
|
repo = "gitea";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0v24q14xzmqgwk10m7rqyn6pahd630v3bnc646ij4w8fbgr8hzja";
|
sha256 = "11gzb6x8zixmkm57x8hdncmdbbvppzld3yf7p7m0abigg8zyybsj";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./static-root-path.patch ];
|
patches = [ ./static-root-path.patch ];
|
||||||
|
|
|
@ -2,12 +2,12 @@ diff --git i/modules/setting/setting.go w/modules/setting/setting.go
|
||||||
index aafe2d1b..1e4a8064 100644
|
index aafe2d1b..1e4a8064 100644
|
||||||
--- i/modules/setting/setting.go
|
--- i/modules/setting/setting.go
|
||||||
+++ w/modules/setting/setting.go
|
+++ w/modules/setting/setting.go
|
||||||
@@ -683,7 +683,7 @@ func NewContext() {
|
@@ -730,7 +730,7 @@ func NewContext() {
|
||||||
LocalURL = sec.Key("LOCAL_ROOT_URL").MustString(defaultLocalURL)
|
LocalURL = sec.Key("LOCAL_ROOT_URL").MustString(defaultLocalURL)
|
||||||
OfflineMode = sec.Key("OFFLINE_MODE").MustBool()
|
OfflineMode = sec.Key("OFFLINE_MODE").MustBool()
|
||||||
DisableRouterLog = sec.Key("DISABLE_ROUTER_LOG").MustBool()
|
DisableRouterLog = sec.Key("DISABLE_ROUTER_LOG").MustBool()
|
||||||
- StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(workDir)
|
- StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(AppWorkPath)
|
||||||
+ StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString("@data@")
|
+ StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString("@data@")
|
||||||
AppDataPath = sec.Key("APP_DATA_PATH").MustString("data")
|
AppDataPath = sec.Key("APP_DATA_PATH").MustString(path.Join(AppWorkPath, "data"))
|
||||||
EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
|
EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
|
||||||
EnablePprof = sec.Key("ENABLE_PPROF").MustBool(false)
|
EnablePprof = sec.Key("ENABLE_PPROF").MustBool(false)
|
||||||
|
|
Loading…
Reference in a new issue