Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
962 B
Nix
44 lines
962 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
installShellFiles,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.2";
|
|
pname = "ddgr";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jarun";
|
|
repo = "ddgr";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-88cCQm3eViy0OwSyCTlnW7uuiFwz2/6Wz45QzxCgXxg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --bash --name ddgr.bash auto-completion/bash/ddgr-completion.bash
|
|
installShellCompletion --fish auto-completion/fish/ddgr.fish
|
|
installShellCompletion --zsh auto-completion/zsh/_ddgr
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jarun/ddgr";
|
|
description = "Search DuckDuckGo from the terminal";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
ceedubs
|
|
markus1189
|
|
];
|
|
platforms = python3.meta.platforms;
|
|
mainProgram = "ddgr";
|
|
};
|
|
}
|