nixpkgs/pkgs/by-name/gi/git-cache/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

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 ];
};
}