Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bb18e3823309
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 65a9b52deb75
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 7, 2019

  1. gitea: 1.9.2 -> 1.9.3

    Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.9.3
    (cherry picked from commit 8b71bb0)
    etu committed Sep 7, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    etu Elis Hirwing
    Copy the full SHA
    bced2b1 View commit details

Commits on Sep 8, 2019

  1. Merge pull request #68284 from etu/1903-gitea-1-9-3

    [19.03] gitea: 1.9.2 -> 1.9.3
    Ma27 authored Sep 8, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    65a9b52 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/version-management/gitea/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/version-management/gitea/default.nix
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@ with stdenv.lib;

buildGoPackage rec {
pname = "gitea";
version = "1.9.2";
version = "1.9.3";

src = fetchFromGitHub {
owner = "go-gitea";
repo = "gitea";
rev = "v${version}";
sha256 = "1i7h6scycwzil87fcx1a19w5pl0986g5ax7y030w0wgmrq3zj53a";
sha256 = "0g6ch85dq4vazxnr6g78wgqrnfa955395y1zws0a50h0wfxpdjis";
# Required to generate the same checksum on MacOS due to unicode encoding differences
# More information: https://github.com/NixOS/nixpkgs/pull/48128
extraPostFetch = ''
@@ -56,7 +56,7 @@ buildGoPackage rec {

meta = {
description = "Git with a cup of tea";
homepage = https://gitea.io;
homepage = "https://gitea.io";
license = licenses.mit;
maintainers = with maintainers; [ disassembler kolaente ];
};