git-cache: init at 2018-06-18

This commit is contained in:
MaxHearnden 2023-04-20 16:47:33 +01:00 committed by Emery Hemingway
parent d30a74b4e4
commit e4dcbbd247
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{fetchFromGitHub, lib, stdenv}:
stdenv.mkDerivation rec {
pname = "git-cache";
version = "2018-06-18";
src = fetchFromGitHub {
owner = "Seb35";
repo = "git-cache";
rev = "354f661e40b358c5916c06957bd6b2c65426f452";
sha256 = "sha256-V7rQOy+s9Lzdc+RTA2QGPfyavw4De/qQ+tWrzYtO2qA=";
};
dontBuild = true;
installPhase = ''
install -Dm555 git-cache $out/bin/git-cache
'';
meta = with lib; {
homepage = "https://github.com/Seb35/git-cache";
license = lib.licenses.wtfpl;
description = "A program to add and manage a system-wide or user-wide cache for remote git repositories";
platforms = with platforms; linux ++ darwin;
maintainers = [];
};
}

View File

@ -2310,6 +2310,8 @@ with pkgs;
git-bug-migration = callPackage ../applications/version-management/git-bug-migration { };
git-cache = callPackage ../applications/version-management/git-cache { };
git-chglog = callPackage ../applications/version-management/git-chglog { };
git-cinnabar = callPackage ../applications/version-management/git-cinnabar {