mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #48128 from florianjacob/gitea
gitea: 1.5.1 -> 1.5.2
This commit is contained in:
commit
81593e39bc
1 changed files with 10 additions and 2 deletions
|
@ -7,13 +7,21 @@ with stdenv.lib;
|
|||
|
||||
buildGoPackage rec {
|
||||
name = "gitea-${version}";
|
||||
version = "1.5.1";
|
||||
version = "1.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "go-gitea";
|
||||
repo = "gitea";
|
||||
rev = "v${version}";
|
||||
sha256 = "06h6v9py35mm0xk9l8xrq02vvr5vzl15gfbw9qqvpn8kiamkn53r";
|
||||
sha256 = "168pbndlh7c148p8wzkd39kd7idiba9zw7v0alp9zqcqzzayaydj";
|
||||
# Required to generate the same checksum on MacOS due to unicode encoding differences
|
||||
# More information: https://github.com/NixOS/nixpkgs/pull/48128
|
||||
extraPostFetch = ''
|
||||
rm -rf $out/integrations
|
||||
rm -rf $out/vendor/github.com/Unknown/cae/tz/testdata
|
||||
rm -rf $out/vendor/github.com/Unknown/cae/zip/testdata
|
||||
rm -rf $out/vendor/gopkg.in/macaron.v1/fixtures
|
||||
'';
|
||||
};
|
||||
|
||||
patches = [ ./static-root-path.patch ];
|
||||
|
|
Loading…
Reference in a new issue