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: 645fd4a2c05d
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: 14dd961b8d5a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 10, 2020

  1. gitea: 1.11.4 -> 1.11.5

    https://github.com/go-gitea/gitea/releases/tag/v1.11.5
    
    Also applying the patch which fixes the wiki-pages, closes #87115.
    
    (cherry picked from commit 5467751)
    Ma27 committed May 10, 2020
    Copy the full SHA
    14dd961 View commit details
Showing with 10 additions and 3 deletions.
  1. +10 −3 pkgs/applications/version-management/gitea/default.nix
13 changes: 10 additions & 3 deletions pkgs/applications/version-management/gitea/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ stdenv, buildGoPackage, fetchurl, makeWrapper
, git, bash, gzip, openssh, pam
, fetchpatch
, sqliteSupport ? true
, pamSupport ? true
}:
@@ -8,11 +9,11 @@ with stdenv.lib;

buildGoPackage rec {
pname = "gitea";
version = "1.11.4";
version = "1.11.5";

src = fetchurl {
url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
sha256 = "18k6kcdq0ijpzgay2aq1w95qkgfvrn1dgh4cxyj9c4i0pwb3ar7f";
sha256 = "0iqxwg53wjwi4vpq2h6fwmniazsi4cf68fcjrs459qbz4d6x8xa9";
};

unpackPhase = ''
@@ -22,7 +23,13 @@ buildGoPackage rec {

sourceRoot = "source";

patches = [ ./static-root-path.patch ];
patches = [
./static-root-path.patch
(fetchpatch {
url = "https://github.com/go-gitea/gitea/commit/1830d0ed5f4a67e3360ecbb55933b5540b6affce.patch";
sha256 = "163531pcki28qfs56l64vv4xxaavxgksf038da1sn21j5l2jm81i";
})
];

postPatch = ''
patchShebangs .