gitea: switch back to nixpkgs version

This commit is contained in:
Jörg Thalheim 2023-08-10 10:55:22 +02:00
parent c2295d994b
commit dedb44dc44

View File

@ -1,16 +1,7 @@
{ gitea, fetchurl }:
{ gitea }:
gitea.overrideAttrs (old: rec {
name = "gitea-${version}";
# we currently use a release candiate to generate runner tokes on startup
version = "1.20.0-rc2";
patches = old.patches ++ [
./0001-add-bot-check.patch
];
# not fetching directly from the git repo, because that lacks several vendor files for the web UI
src = fetchurl {
url = "https://dl.gitea.com/gitea/${version}/gitea-src-${version}.tar.gz";
hash = "sha256-AYlTbbYtd+N8W7buEd1+6J49mGE6X6a+1eYAcwEore4=";
};
})