e58816bcc6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/googler/versions
26 lines
633 B
Nix
26 lines
633 B
Nix
{stdenv, fetchFromGitHub, python}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.7.1";
|
|
name = "googler-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jarun";
|
|
repo = "googler";
|
|
rev = "v${version}";
|
|
sha256 = "0dcszpz85h3yjnr55ixf8mzsdv46w3g27frhgcsl5zlsgk6vl8kw";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python ];
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|