mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, pandoc
|
|
, makeWrapper
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ov";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "noborus";
|
|
repo = "ov";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ow2tIML7+x0X3FSpr4UQ8bzzYhZJZ9pZL8eNReEjitQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-X2/kcXxdGwFvdiTu1MGyv90OngWmR/xR2YtjvmLkiVE=";
|
|
|
|
ldflags = [
|
|
"-X main.Version=v${version}"
|
|
"-X main.Revision=${src.rev}"
|
|
];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pandoc
|
|
makeWrapper
|
|
];
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd ov \
|
|
--bash <($out/bin/ov completion bash) \
|
|
--fish <($out/bin/ov completion fish) \
|
|
--zsh <($out/bin/ov completion zsh)
|
|
|
|
mkdir -p $out/share/$name
|
|
cp $src/ov-less.yaml $out/share/$name/less-config.yaml
|
|
makeWrapper $out/bin/ov $out/bin/ov-less --add-flags "--config $out/share/$name/less-config.yaml"
|
|
|
|
mkdir -p $doc/share/doc/$name
|
|
pandoc -s < $src/README.md > $doc/share/doc/$name/README.html
|
|
mkdir -p $doc/share/$name
|
|
cp $src/ov.yaml $doc/share/$name/sample-config.yaml
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Feature-rich terminal-based text viewer";
|
|
homepage = "https://noborus.github.io/ov";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ farcaller ];
|
|
};
|
|
}
|