Merge pull request #29997 from k0ral/nixos-unstable
googler: init at 3.3
This commit is contained in:
commit
50f4eb81c6
25
pkgs/applications/misc/googler/default.nix
Normal file
25
pkgs/applications/misc/googler/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{stdenv, fetchFromGitHub, python}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.3";
|
||||
name = "googler-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jarun";
|
||||
repo = "googler";
|
||||
rev = "v${version}";
|
||||
sha256 = "0gkzgcf0qss7fskgswryk835vivlv1f99ym1pbxy3vv9wcwx6a43";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -14440,6 +14440,10 @@ with pkgs;
|
||||
|
||||
google-musicmanager = callPackage ../applications/audio/google-musicmanager { };
|
||||
|
||||
googler = callPackage ../applications/misc/googler {
|
||||
python = python3;
|
||||
};
|
||||
|
||||
gopher = callPackage ../applications/networking/gopher/gopher { };
|
||||
|
||||
gopherclient = libsForQt5.callPackage ../applications/networking/gopher/gopherclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user