···1617buildGoPackage rec {
18 pname = "gitea";
19- version = "1.14.3";
2021 # not fetching directly from the git repo, because that lacks several vendor files for the web UI
22 src = fetchurl {
23 url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
24- sha256 = "sha256-ieQxqZO84sYBcCzWYn40tRGLgSs2PpLlcNkI4vFq+wE=";
25 };
2627 unpackPhase = ''
···1617buildGoPackage rec {
18 pname = "gitea";
19+ version = "1.14.4";
2021 # not fetching directly from the git repo, because that lacks several vendor files for the web UI
22 src = fetchurl {
23 url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
24+ sha256 = "sha256-sl/Vml8QmwZEAd2PIYWQcP7s6NYeomGJQGKhRiddtoo=";
25 };
2627 unpackPhase = ''
···1-{ lib, fetchurl, fetchFromGitHub, buildPythonPackage, isPy3k,
2isodate, lxml, xmlsec, freezegun }:
34buildPythonPackage rec {
···13 sha256 = "1yk02xq90bm7p6k091av6gapb5h2ccxzgrbm03sj2x8h0wff9s8k";
14 };
15016 patches = [
17 # Remove the dependency on defusedxml
18 #
19 # This patch is already merged upstream and does not introduce any
20 # functionality changes.
21- (fetchurl {
22 url = "https://github.com/onelogin/python3-saml/commit/4b6c4b1f2ed3f6eab70ff4391e595b808ace168c.patch";
23- sha256 = "11gqn7ib2hmlx5wp4xhi375v5ajapwmj4lpw0y44bh5ww8cypvqy";
00000024 })
25 ];
26
···1+{ lib, fetchpatch, fetchFromGitHub, buildPythonPackage, isPy3k,
2isodate, lxml, xmlsec, freezegun }:
34buildPythonPackage rec {
···13 sha256 = "1yk02xq90bm7p6k091av6gapb5h2ccxzgrbm03sj2x8h0wff9s8k";
14 };
1516+ # Remove both patches on update
17 patches = [
18 # Remove the dependency on defusedxml
19 #
20 # This patch is already merged upstream and does not introduce any
21 # functionality changes.
22+ (fetchpatch {
23 url = "https://github.com/onelogin/python3-saml/commit/4b6c4b1f2ed3f6eab70ff4391e595b808ace168c.patch";
24+ sha256 = "sha256-KHyAoX3our3Rz2z4xo0lTBB1XOGuC3Pe+lUDCzK5WQI=";
25+ })
26+27+ # Update expiry dates for test response XMLs
28+ (fetchpatch {
29+ url = "https://github.com/onelogin/python3-saml/commit/05611bbf6d7d8313adb9c77ff88a9210333ccc38.patch";
30+ sha256 = "sha256-62TwgCXDFYsZIAeqAysJRziMvhUVhGzta/C2wS3v4HY=";
31 })
32 ];
33
+8-9
pkgs/development/tools/analysis/rr/unstable.nix
···1-# This is a temporary copy of the default.nix in this folder, with the version updated to the current tip of rr's master branch.
2-# This exists because rr has not had a release in a long time, but there have been a lot of improvements including UX.
3-# Some of the UX improvements help prevent foot shooting.
4-# Upstream has stated that it should be fine to use master.
5-# This file, and its attribute in all-packages, can be removed once rr makes a release.
6-# For further information, please see https://github.com/NixOS/nixpkgs/issues/99535 "Improve support for the rr debugger in nixos containers"
78{ callPackage, fetchFromGitHub }:
9···12in
1314 rr.overrideAttrs (old: {
15- version = "unstable-2020-10-04";
1617 src = fetchFromGitHub {
18 owner = "mozilla";
19 repo = "rr";
20- rev = "9ff375813a740a0a6ebcdfcebc58bd61ab68c667";
21- sha256 = "0raifs6cg5ckpi2445inhy3hfhp4p89s1lkx9z17mcc2g1c1phf5";
22 };
23 })
···1+# This is a temporary copy of the default.nix in this folder, with the version
2+# updated to the current tip of rr's master branch. This exists because rr has
3+# not had a release in a long time. Upstream has stated that it should be fine
4+# to use master. This file, and its attribute in all-packages, can be removed
5+# once rr makes a release.
067{ callPackage, fetchFromGitHub }:
8···11in
1213 rr.overrideAttrs (old: {
14+ version = "unstable-2021-07-06";
1516 src = fetchFromGitHub {
17 owner = "mozilla";
18 repo = "rr";
19+ rev = "0fc21a8d654dabc7fb1991d76343824cb7951ea0";
20+ sha256 = "0s851rflxmvxcfw97zmplcwzhv86xmd3my78pi4c7gkj18d621i5";
21 };
22 })