googler: 3.9 -> 4.0

https://github.com/jarun/googler/releases/tag/v4.0
This commit is contained in:
Oleksii Filonenko 2019-12-05 23:28:16 +02:00
parent 691bebf68b
commit 9f0d48d681
No known key found for this signature in database
GPG key ID: F3510FE5691629A1

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,7 +16,7 @@ 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 ];