Merge pull request #75063 from filalex77/googler-4.0

googler: 3.9 -> 4.0
This commit is contained in:
Mario Rodas 2019-12-07 03:09:57 -05:00 committed by GitHub
commit f96003ed05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
{stdenv, fetchFromGitHub, python}:
{ stdenv, fetchFromGitHub, python }:
stdenv.mkDerivation rec {
version = "3.9";
pname = "googler";
version = "4.0";
src = fetchFromGitHub {
owner = "jarun";
repo = "googler";
repo = pname;
rev = "v${version}";
sha256 = "0zqq157i0rfrja8yqnqr9rfrp5apzc7cxb7d7ppv6abkc5bckyqc";
sha256 = "13jj15ph0vmbyxjslzl6z4h5b7wyllvhwgsrb6zf7qlkcmkd4vwy";
};
propagatedBuildInputs = [ python ];
@ -16,10 +16,10 @@ stdenv.mkDerivation rec {
makeFlags = "PREFIX=$(out)";
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";
license = licenses.gpl3;
maintainers = with maintainers; [ koral ];
maintainers = with maintainers; [ koral filalex77 ];
platforms = platforms.unix;
};
}