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
50 lines
962 B
Nix
50 lines
962 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "bash-git-prompt";
|
|
version = "2.7.1-unstable-2025-04-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magicmonty";
|
|
repo = "bash-git-prompt";
|
|
rev = "e733ada3e93fd9fdb6e9d1890e38e6e523522da7";
|
|
hash = "sha256-FWeYzISY4+cS2xg6skfcpTXgbkBs41E/EzEb3JNdFoQ=";
|
|
};
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
|
|
# Copy all shell scripts
|
|
cp *.sh $out/
|
|
|
|
# Copy fish script
|
|
cp *.fish $out/
|
|
|
|
# Copy themes directory
|
|
cp -r themes $out/
|
|
|
|
# Copy documentation
|
|
cp README.md $out/
|
|
cp LICENSE.txt $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Informative, fancy bash prompt for Git users";
|
|
homepage = "https://github.com/magicmonty/bash-git-prompt";
|
|
license = lib.licenses.bsd2;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.parrot7483 ];
|
|
};
|
|
}
|