mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
37 lines
996 B
Nix
37 lines
996 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.5";
|
|
name = "nix-bash-completions-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hedning";
|
|
repo = "nix-bash-completions";
|
|
rev = "v${version}";
|
|
sha256 = "10f70jw81vky52s3fidf7vzl725fihiypsw39825wnkpynayhmrg";
|
|
};
|
|
|
|
# To enable lazy loading via. bash-completion we need a symlink to the script
|
|
# from every command name.
|
|
installPhase = ''
|
|
commands=$(
|
|
function complete() { shift 2; echo "$@"; }
|
|
shopt -s extglob
|
|
source _nix
|
|
)
|
|
install -Dm444 -t $out/share/bash-completion/completions _nix
|
|
cd $out/share/bash-completion/completions
|
|
for c in $commands; do
|
|
ln -s _nix $c
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/hedning/nix-bash-completions;
|
|
description = "Bash completions for Nix, NixOS, and NixOps";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ hedning ];
|
|
};
|
|
}
|