nixpkgs/pkgs/tools/misc/dasht/default.nix

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

66 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, makeWrapper
2020-05-19 12:20:00 +03:00
, installShellFiles
, 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";
src = fetchFromGitHub {
owner = "sunaku";
2019-02-23 08:01:31 +03:00
repo = pname;
rev = "v${version}";
2020-05-19 07:12:33 +03:00
sha256 = "08wssmifxi7pnvn9gqrvpzpkc2qpkfbzbhxh0dk1gff2y2211qqk";
};
deps = lib.makeBinPath [
coreutils
gnused
gnugrep
sqlite
wget
w3m
socat
gawk
(placeholder "out")
];
2020-05-19 12:20:00 +03:00
nativeBuildInputs = [ makeWrapper installShellFiles ];
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/*
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 ];
};
}