Skip to content

Commit

Permalink
misc-gitology: init at unstable-2023-06-22 (NixOS#252010)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 20, 2024
2 parents dc5b30f + 8190952 commit 089c395
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pkgs/by-name/mi/misc-gitology/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
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 { };
}

0 comments on commit 089c395

Please sign in to comment.