Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
947 B
Nix
48 lines
947 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
perl,
|
|
python3,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "misc-gitology";
|
|
version = "0-unstable-2024-08-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "da-x";
|
|
repo = "misc-gitology";
|
|
rev = "8f6b200ed5f4d39f86026cf050f325d5f5713950";
|
|
hash = "sha256-6LoMJUOyBpP1HvVXNahEQlN1JKC9KflcOH9QWIi4M6s=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
buildInputs = [
|
|
python3
|
|
# For `git-find-blob`:
|
|
perl
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
find . \
|
|
-type f \
|
|
-executable \
|
|
-maxdepth 1 \
|
|
-exec install --target-directory=$out/bin/ {} +
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Assortment of scripts around Git";
|
|
homepage = "https://github.com/da-x/misc-gitology";
|
|
license = [ licenses.bsd2 ];
|
|
maintainers = [ maintainers._9999years ];
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
}
|