mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
git-cache: init at 2018-06-18
This commit is contained in:
parent
d30a74b4e4
commit
e4dcbbd247
27
pkgs/applications/version-management/git-cache/default.nix
Normal file
27
pkgs/applications/version-management/git-cache/default.nix
Normal 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 = [];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user