Skip to content

Commit aa3a806

Browse files
committed
reno: Use fetchgit instead of fetchFromGitHub
Working around the hash mismatches in the pipeline. On-behalf-of: SAP markus.partheymueller@cyberus-technology.de
1 parent 6eb08fa commit aa3a806

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

packages/reno.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
fetchFromGitHub,
2+
fetchgit,
33
git,
44
gnupg,
55
python3Packages,
@@ -51,11 +51,10 @@ python3Packages.buildPythonPackage rec {
5151
'';
5252

5353
# The tests use the .git directory and git itself, thus we need to check out the repo.
54-
src = fetchFromGitHub {
55-
owner = "openstack";
56-
repo = "reno";
54+
src = fetchgit {
55+
url = "https://github.com/openstack/reno";
5756
rev = "${version}";
58-
sha256 = "sha256-SPepaOvq4LKV6EBmgXrlAku1Ug5Y1Zq7pjxkNPdrqVg=";
57+
sha256 = "sha256-zB/iAR0YV3QaQVshCva24OgvRokT+lDeTXGeHi6XkUA=";
5958
leaveDotGit = true;
6059
};
6160
}

0 commit comments

Comments
 (0)