nixpkgs/pkgs/by-name/li/liquidprompt/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

58 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
gitUpdater,
}:
stdenv.mkDerivation rec {
pname = "liquidprompt";
version = "2.2.1";
src = fetchFromGitHub {
owner = "liquidprompt";
repo = pname;
rev = "v${version}";
hash = "sha256-ZVzFGe3ItWsN23iyGpxZEN2KtviYKI8x/sDa2MRio/Y=";
};
strictDeps = true;
postPatch = ''
patchShebangs tools/*.sh
'';
installPhase = ''
runHook preInstall
install -D -m 0444 liquidprompt $out/bin/liquidprompt
install -D -m 0444 liquidprompt.plugin.zsh \
$out/share/zsh/plugins/liquidprompt/liquidprompt.plugin.zsh
install -D -m 0444 liquidprompt \
$out/share/zsh/plugins/liquidprompt/liquidprompt
# generate default config file
mkdir -p $out/share/doc/liquidprompt
tools/config-from-doc.sh --verbose > $out/share/doc/liquidprompt/liquidpromptrc-dist
mkdir -p $out/share/liquidprompt
cp -a themes $out/share/liquidprompt/
mkdir -p $out/share/liquidprompt/contrib
cp -a contrib/presets $out/share/liquidprompt/contrib/
runHook postInstall
'';
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "Full-featured & carefully designed adaptive prompt for Bash & Zsh";
homepage = "https://github.com/liquidprompt/liquidprompt";
license = licenses.agpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ gerschtli ];
};
}