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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
909 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, installShellFiles }:
2017-12-04 17:30:38 +00:00
stdenv.mkDerivation rec {
2022-03-06 04:56:56 +00:00
version = "2.0";
pname = "ddgr";
2017-12-04 17:30:38 +00:00
src = fetchFromGitHub {
owner = "jarun";
repo = "ddgr";
rev = "v${version}";
2022-03-06 04:56:56 +00:00
sha256 = "sha256-otfa2t/tfpYKqQu+VQxRKryUsIxM3JKILc3zseTC2KM=";
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 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
};
}