mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
26 lines
621 B
Nix
26 lines
621 B
Nix
{stdenv, fetchFromGitHub, python}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.9";
|
|
pname = "googler";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jarun";
|
|
repo = "googler";
|
|
rev = "v${version}";
|
|
sha256 = "0zqq157i0rfrja8yqnqr9rfrp5apzc7cxb7d7ppv6abkc5bckyqc";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|