Merge pull request #94271 from r-ryantm/auto-update/googler

googler: 4.1 -> 4.2
This commit is contained in:
Jörg Thalheim 2020-07-31 07:06:01 +01:00 committed by GitHub
commit ae482bb41e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,33 @@
{ stdenv, fetchFromGitHub, python }: { stdenv, fetchFromGitHub, python, installShellFiles }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "googler"; pname = "googler";
version = "4.1"; version = "4.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jarun"; owner = "jarun";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "04d7n2l159s7c9xzvyvbnbii1k3zdbajagpx09x1l692cwjbvpxw"; sha256 = "0c480wzc7q4pks1f6mnayr580c73jhzshliz4hgznzc7zwcdf41w";
}; };
propagatedBuildInputs = [ python ]; buildInputs = [ python ];
nativeBuildInputs = [ installShellFiles ];
makeFlags = [ "PREFIX=$(out)" ]; 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; { meta = with stdenv.lib; {
homepage = "https://github.com/jarun/googler"; homepage = "https://github.com/jarun/googler";
description = "Google Search, Google Site Search, Google News from the terminal"; description = "Google Search, Google Site Search, Google News from the terminal";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ koral filalex77 ]; maintainers = with maintainers; [ koral filalex77 ];
platforms = platforms.unix; platforms = python.meta.platforms;
}; };
} }