2019-02-20 21:26:47 +03:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
2020-05-19 12:20:00 +03:00
|
|
|
, installShellFiles
|
2019-02-20 21:26:47 +03:00
|
|
|
, coreutils
|
|
|
|
, gnused
|
|
|
|
, gnugrep
|
|
|
|
, sqlite
|
|
|
|
, wget
|
|
|
|
, w3m
|
|
|
|
, socat
|
|
|
|
, gawk
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-23 08:01:31 +03:00
|
|
|
pname = "dasht";
|
2020-05-19 07:12:33 +03:00
|
|
|
version = "2.4.0";
|
2019-02-20 21:26:47 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sunaku";
|
2019-02-23 08:01:31 +03:00
|
|
|
repo = pname;
|
2019-02-20 21:26:47 +03:00
|
|
|
rev = "v${version}";
|
2020-05-19 07:12:33 +03:00
|
|
|
sha256 = "08wssmifxi7pnvn9gqrvpzpkc2qpkfbzbhxh0dk1gff2y2211qqk";
|
2019-02-20 21:26:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
deps = lib.makeBinPath [
|
|
|
|
coreutils
|
|
|
|
gnused
|
|
|
|
gnugrep
|
|
|
|
sqlite
|
|
|
|
wget
|
|
|
|
w3m
|
|
|
|
socat
|
|
|
|
gawk
|
|
|
|
(placeholder "out")
|
|
|
|
];
|
|
|
|
|
2020-05-19 12:20:00 +03:00
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
2019-02-20 21:26:47 +03:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/* $out/bin/
|
|
|
|
|
2020-05-19 12:20:00 +03:00
|
|
|
installManPage man/man1/*
|
|
|
|
installShellCompletion --zsh etc/zsh/completions/*
|
2019-02-20 21:26:47 +03:00
|
|
|
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
echo "Wrapping $i"
|
|
|
|
wrapProgram $i --prefix PATH : ${deps};
|
|
|
|
done;
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Search API docs offline, in terminal or browser";
|
2019-02-23 08:01:31 +03:00
|
|
|
homepage = "https://sunaku.github.io/dasht/man";
|
2021-01-15 12:19:50 +03:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
platforms = lib.platforms.unix; #cannot test other
|
|
|
|
maintainers = with lib.maintainers; [ matthiasbeyer ];
|
2019-02-20 21:26:47 +03:00
|
|
|
};
|
|
|
|
}
|