Files
nixpkgs/pkgs/by-name/gi/git-cache/package.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

33 lines
744 B
Nix

{
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 = {
homepage = "https://github.com/Seb35/git-cache";
license = lib.licenses.wtfpl;
description = "Program to add and manage a system-wide or user-wide cache for remote git repositories";
mainProgram = "git-cache";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ maxhearnden ];
};
}