nixpkgs/pkgs/by-name/gi/git-cache/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
733 B
Nix
Raw Normal View History

2023-04-20 15:47:33 +00:00
{fetchFromGitHub, lib, stdenv}:
stdenv.mkDerivation {
2023-04-20 15:47:33 +00:00
pname = "git-cache";
version = "2018-06-18";
src = fetchFromGitHub {
owner = "Seb35";
repo = "git-cache";
rev = "354f661e40b358c5916c06957bd6b2c65426f452";
hash = "sha256-V7rQOy+s9Lzdc+RTA2QGPfyavw4De/qQ+tWrzYtO2qA=";
2023-04-20 15:47:33 +00:00
};
dontBuild = true;
installPhase = ''
install -Dm555 git-cache $out/bin/git-cache
'';
meta = with lib; {
homepage = "https://github.com/Seb35/git-cache";
license = licenses.wtfpl;
2023-04-20 15:47:33 +00:00
description = "Program to add and manage a system-wide or user-wide cache for remote git repositories";
mainProgram = "git-cache";
platforms = platforms.unix;
maintainers = with maintainers; [ maxhearnden ];
2023-04-20 15:47:33 +00:00
};
}