From 922f0e98a799ae06ba3cc938897423bfe27c9f28 Mon Sep 17 00:00:00 2001 From: Parrot7483 Date: Mon, 11 Aug 2025 09:59:40 +0200 Subject: [PATCH] bash-git-prompt: init at 2.7.1-unstable-2025-04-23 --- pkgs/by-name/ba/bash-git-prompt/package.nix | 49 +++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 pkgs/by-name/ba/bash-git-prompt/package.nix diff --git a/pkgs/by-name/ba/bash-git-prompt/package.nix b/pkgs/by-name/ba/bash-git-prompt/package.nix new file mode 100644 index 000000000000..9bcee20b24b3 --- /dev/null +++ b/pkgs/by-name/ba/bash-git-prompt/package.nix @@ -0,0 +1,49 @@ +{ + 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 ]; + }; +}