This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
46 lines
877 B
Nix
46 lines
877 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "complete-alias";
|
|
version = "1.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cykerway";
|
|
repo = "complete-alias";
|
|
tag = version;
|
|
sha256 = "18lmdb3inphxyjv08ing5wckqnjq0m5zfl0f15mqzlvf2ypar63x";
|
|
};
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
# required for the patchShebangs setup hook
|
|
chmod +x complete_alias
|
|
|
|
patchShebangs complete_alias
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp -r complete_alias "$out"/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Automagical shell alias completion";
|
|
homepage = "https://github.com/cykerway/complete-alias";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ tuxinaut ];
|
|
mainProgram = "complete_alias";
|
|
};
|
|
}
|