about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-cache/default.nix
blob: 147570c7afd10246a5702543cb9908de2c7bd684 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{fetchFromGitHub, lib, stdenv}:

stdenv.mkDerivation {
  pname = "git-cache";
  version = "2018-06-18";

  src = fetchFromGitHub {
    owner = "Seb35";
    repo = "git-cache";
    rev = "354f661e40b358c5916c06957bd6b2c65426f452";
    hash = "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 = licenses.wtfpl;
    description = "A program to add and manage a system-wide or user-wide cache for remote git repositories";
    platforms = platforms.unix;
    maintainers = with maintainers; [ maxhearnden ];
  };
}