nixpkgs/pkgs/applications/misc/ddgr/default.nix

34 lines
914 B
Nix
Raw Normal View History

2020-04-09 02:16:42 +00:00
{ stdenv, fetchFromGitHub, python3, installShellFiles }:
2017-12-04 17:30:38 +00:00
stdenv.mkDerivation rec {
2020-05-02 06:42:59 +00:00
version = "1.8.1";
pname = "ddgr";
2017-12-04 17:30:38 +00:00
src = fetchFromGitHub {
owner = "jarun";
repo = "ddgr";
rev = "v${version}";
2020-05-02 06:42:59 +00:00
sha256 = "0668wzh1gqin0xscy3fly9hz370n2ny175f3kya9bsld0x0jkd5p";
2017-12-04 17:30:38 +00:00
};
2020-04-09 02:16:42 +00:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = [ python3 ];
2017-12-04 17:30:38 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2017-12-04 17:30:38 +00:00
postInstall = ''
2020-04-09 02:16:42 +00:00
installShellCompletion --bash --name ddgr.bash auto-completion/bash/ddgr-completion.bash
installShellCompletion --fish auto-completion/fish/ddgr.fish
installShellCompletion --zsh auto-completion/zsh/_ddgr
2017-12-04 17:30:38 +00:00
'';
meta = with stdenv.lib; {
2020-04-09 02:16:42 +00:00
homepage = "https://github.com/jarun/ddgr";
2017-12-04 17:30:38 +00:00
description = "Search DuckDuckGo from the terminal";
license = licenses.gpl3;
maintainers = with maintainers; [ ceedubs markus1189 ];
2020-04-09 02:16:42 +00:00
platforms = python3.meta.platforms;
2017-12-04 17:30:38 +00:00
};
}