mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
googler: install completions
This commit is contained in:
parent
5885473a7a
commit
e4980d99d2
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, python }:
|
||||
{ stdenv, fetchFromGitHub, python, installShellFiles }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "googler";
|
||||
|
@ -11,15 +11,23 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0c480wzc7q4pks1f6mnayr580c73jhzshliz4hgznzc7zwcdf41w";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ python ];
|
||||
buildInputs = [ python ];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --bash --name googler.bash auto-completion/bash/googler-completion.bash
|
||||
installShellCompletion --fish auto-completion/fish/googler.fish
|
||||
installShellCompletion --zsh auto-completion/zsh/_googler
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/jarun/googler";
|
||||
description = "Google Search, Google Site Search, Google News from the terminal";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ koral filalex77 ];
|
||||
platforms = platforms.unix;
|
||||
platforms = python.meta.platforms;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue