mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #144851 from c0deaddict/zhf/gitaly
This commit is contained in:
commit
28f9677cec
2 changed files with 14 additions and 1 deletions
|
@ -20,6 +20,7 @@ let
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
version = "14.4.1";
|
||||
gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}";
|
||||
in
|
||||
|
|
|
@ -5681,7 +5681,9 @@ with pkgs;
|
|||
|
||||
gitleaks = callPackage ../tools/security/gitleaks { };
|
||||
|
||||
gitaly = callPackage ../applications/version-management/gitlab/gitaly { };
|
||||
gitaly = callPackage ../applications/version-management/gitlab/gitaly {
|
||||
libgit2 = libgit2_1_1; # git2go only supports v1.1.x
|
||||
};
|
||||
|
||||
gitstats = callPackage ../applications/version-management/gitstats { };
|
||||
|
||||
|
@ -16309,6 +16311,16 @@ with pkgs;
|
|||
];
|
||||
});
|
||||
|
||||
libgit2_1_1 = libgit2.overrideAttrs (oldAttrs: rec {
|
||||
version = "1.1.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "libgit2";
|
||||
repo = "libgit2";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-SxceIxT0aeiiiZCeSIe6EOa+MyVpQVaiv/ZZn6fkwIc=";
|
||||
};
|
||||
});
|
||||
|
||||
libgit2-glib = callPackage ../development/libraries/libgit2-glib { };
|
||||
|
||||
libhsts = callPackage ../development/libraries/libhsts { };
|
||||
|
|
Loading…
Reference in a new issue