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