Skip to content

Commit

Permalink
Merge pull request #48128 from florianjacob/gitea
Browse files Browse the repository at this point in the history
gitea: 1.5.1 -> 1.5.2
  • Loading branch information
andir committed Oct 15, 2018
2 parents 989123f + 0a5c7cf commit 81593e3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pkgs/applications/version-management/gitea/default.nix
Expand Up @@ -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 ];
Expand Down

0 comments on commit 81593e3

Please sign in to comment.