mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
![Alexis Hildebrandt](/assets/img/avatar_default.png)
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
29 lines
733 B
Nix
29 lines
733 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 = with lib; {
|
|
homepage = "https://github.com/Seb35/git-cache";
|
|
license = licenses.wtfpl;
|
|
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 ];
|
|
};
|
|
}
|